Thread (20 messages) flat view 20 messages, 5 authors, 2016-06-15

Re: [PATCH 1/2] commit: add message options for rebase --autosquash

From: Bryan Drewery <hidden>
Date: 2016-06-15 22:49:33

quoted
quoted
quoted
These options make it convenient to construct commit messages for use
with 'rebase --autosquash'.  The resulting commit message will be
"fixup! ..." or "squash! ..." where "..." is the subject line of the
specified commit message.
        
`git fixup' is aliased to `!f() { git commit -m "$(git show -s
--pretty='format:fixup! %s%n%nFixup for %h%n' "$1")" $2; }; f'
`git squash' is aliased to `!f() { git commit -m "$(git show -s
--pretty='format:squash! %s%n%n' "$1")" -e $2; }; f'
  
Thanks.

I had missed that this was for the commit message. Thought it was doing 
the rebase as well.

Bryan
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help