On Fri, 14 Mar 2008 23:15:32 +0800 "Ping Yin" <pkufranky@xxxxxxxxx> wrote: > Sometimes i want to cherry pick a commit, but i don't want the commit > message of this commit. What i want is the patch corresponding to > this commit to be squashed to the top commit? > > Now i have to type > > git format-patch -1 --stdout <sha1> | git apply --index && git commit --amend Hi Ping, There is an easier way: $ git cherry-pick -n <sha1> $ git commit -a --amend HTH, Sean -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html