On Saturday 03 July 2010, Mahesh Vaidya wrote: > Thank for the pointer; Do you think following scriptlet is good for > modifying specific commit ? and do edit. > > cat ./modify_specific.sh > git rebase -i $1 && git commit --amend && git rebase --continue You would need to do "$1^" instead of $1, since 'rebase' works on all commits _since_ the given commit (i.e. not including the given commit). You will also have to change the first line of the rebase "script" that is opened in your editor (from "pick <sha1> to "edit <sha1>"). ...Johan -- Johan Herland, <johan@xxxxxxxxxxx> www.herland.net -- 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