Git rebase -i
Use rebase -i to merge commits
Ref: https://backlog.com/git-tutorial/tw/stepup/stepup7_5.html
To merge past commits, use the rebase -i command
$ git rebase -i HEAD~~
The default text editor will open automatically, and you will see commits from HEAD to HEAD~~
1 |
|
Change the "pick" in the second line to "squash", save and exit. Since you need to submit after merging, the editor will remind you to edit the latest submission message, please save and exit after editing the message. In this way, the two commits are merged into one commit. Please check the history with the log command.
Amend commits with rebase -i
Ref: https://backlog.com/git-tutorial/tw/stepup/stepup7_6.html
Use the rebase -i command to select the commits to amend
$ git rebase -i HEAD~~
The default text editor will open commits from HEAD to HEAD~~
1 |
|
Change the text of "pick" in the first line to "edit", save and exit. Then, the following content will be displayed, and the commit to be modified will be checked out.
1 |
|
open sample.txt ,make changes.
1 |
|
You now need to execute "git rebase --continue" to complete the rebase.
$ git rebase --continue