This project's steps can be found on the article or down bellow.
This repository will help you understand how rebase works by actually using it ! Don't worry if you make any mistakes, this is a clean slate, you can always re-clone it if you mess up.
Scenario: you have committed something that does not deserve a commit of its own, or you want to reduce the number of commits on your branch to one before making a pull request.
-
From the
master
branch, create a new branch. -
Create a new file, its content doesn't really matter.
-
Commit that new file to your branch.
git add index.js
git commit -m "add index.js"
-
Update something in that file
-
Commit it again with a message such as "update index.js"
-
Run
git log
, as you can see, we now have 2 commits
We now want to fixup
the update
commit into the add
commit, because this small change does not deserve a commit of its own.
To do so, we'll use the interactive mode of git rebase
, which lets us apply the rebasing with a nice interface.
- Run the rebase command like so:
git rebase -i HEAD~2
HEAD~2
means start from the last commit on the branch (the head) and go back 2 commits. If we wanted to manipulate more commits, we could change the value to the far right.
You should now have an interface that looks something like this:
Don't panic, this only shows you the two commits you are changing at the top, and the available commands bellow them.
By default, the rebase interface uses Vim, to write in it, simply press the i key. You are now in "INSERT" mode. As we want to fixup the second commit in the first one, all we have to do is write fixup
or f
instead of pick
in front of it. Our update index.js
commit will now be squashed into the add index.js
but only the add index.js
's message will be kept.
- Update the second line like so:
pick c0091ec add index.js
f a19336e update index.js
Now, we want to apply the rebase, press escape to leave the INSERT mode, press : (colon) and enter wq for "write" and "quit" and press ENTER to apply these changes. The colon simply allows you to write commands for Vim to execute.
The following message should now appear in your console:
Successfully rebased and updated refs/heads/{YOUR BRANCH NAME}.
Check your git log
, you now have one beautiful and clean commit !
- Finally, force push to that branch to apply the rebase to the remote server
git push origin {BRANCH-NAME} -f
The -f
is essential as a rebase modifies your git history and requires to be forced.
These next 2 steps will be extremely similar to the first one because you now have the tools to do any kind of rebasing 🎉
Scenario: you want to completely remove a commit
We'll drop the add FILENAME
commit we previously made:
- Run the rebase command
git rebase -i HEAD~1
- Add a
d
ordrop
in front of the commit you wish to drop.
-
Run
:wq
in your Vim editor (and check withgit log
that the commit was dropped) -
Don't forget to force push it to your remote server 😀
Pretty similar, with one change.
Scenario: you want to fix a typo or rewrite a commit's title or description
- Create a random commit
- Run the rebase command
git rebase -i HEAD~1
-
Add a
r
orreword
in front of the commit you wish to reword (no need to edit the title now). -
Run
:wq
in your Vim editor. This will open a similar editor with the commit(s) you wish to reword.
- Update the commit's title and description to your will, run
:wq
and that's it ! Check withgit log
that the rewording was applied
- Don't forget to force push it to your remote server 😀
This example isn't reproduced in the Github project, but feel free to test it out.
Scenario: you have multiple PRs (Pull Requests) open at the same time
You merge one PR, now, your second PR is not up to date with master
, oh no !
This very frequent scenario will have us rebase our second PR on master
so that it gets the new code merged from the first PR.
- From the branch you want to rebase (in our case, the second PR's branch), run the following:
git fetch
This downloads all the references our branch needs to apply the rebase.
- Then, execute the rebase like so:
git rebase origin/master
- Finally, run a
git push origin {MY-BRANCH} -f
to apply the rebase to our remote server
Hurray !