Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 218 Bytes

Terminal_GIT_Interactive-Rebase.md

File metadata and controls

15 lines (12 loc) · 218 Bytes

Terminal: GIT Interactive Rebase

$ git log
$ git rebase -i [sha]

# insert
# change pick to f to put in last (above)
# change pick to r to reword
esc
:wq

# rename commit message
$ git rebase --continue