Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add HOWTO_REBASE_ORIGINAL_REPO.md #4

Merged
merged 1 commit into from
Feb 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions HOWTO_REBASE_ORIGINAL_REPO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# How to rebase an original repository into this fork

## Clone the original repository and create a new rebased branch

```bash
# Clone the original repository
cd ../
git clone https://codeberg.org/ziglings/exercises.git
cd exercises

# Set the remote to your fork
git remote -v # should show origin https://codeberg.org/ziglings/exercises.git
git remote set-url origin https://github.com/s-0-a-r/ziglings-exercises.git
git remote -v # should show origin https://github.com/s-0-a-r/ziglings-exercises.git

# Create a new branch from the original branch
git switch -c original-branch

# Push the branch to your fork
git push -f origin original-branch

# Switch back to your branch
cd ../ziglings-exercises
git fetch
git switch -c rebase-original-branch

# Rebase the original branch into your branch
git rebase -i original-branch

# Push the rebased branch to your fork
git push -u origin rebase-original-branch
```

## Create a pull request

Please create a pull request from your rebased branch to main.

## Merge the pull request

After the pull request is merged, you can delete the branch from this fork.