1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| # Rebase a639348..8c898e1 onto a639348 (2 commands) # # Commands: # p, pick = use commit # r, reword = use commit, but edit the commit message # e, edit = use commit, but stop for amending //修改commit信息 # s, squash = use commit, but meld into previous commit //丢弃commit信息, 合并到上个commit中 # f, fixup = like "squash", but discard this commit's log message //丢弃commit信息,日志不记录 # x, exec = run command (the rest of the line) using shell # d, drop = remove commit # # These lines can be re-ordered; they are executed from top to bottom. # # If you remove a line here THAT COMMIT WILL BE LOST. # # However, if you remove everything, the rebase will be aborted. # # Note that empty commits are commented out
|