summaryrefslogtreecommitdiff
path: root/tools/git-applymbox
AgeCommit message (Collapse)AuthorFilesLines
2005-08-18[PATCH] git-applymbox: verify that index is cleanLibravatar Linus Torvalds1-0/+8
This makes git-applymbox verify that the index matches the current HEAD before it starts applying patches. Otherwise, you might have updated the index with unrelated changes, and the first patch will commit not just the patch from the mbox, but also any changes you had in your index. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-16Teach applymbox to keep the Subject: line.Libravatar Junio C Hamano1-3/+8
This corresponds to the -k flag to git format-patch --mbox option. The option should probably not be used when applying a real e-mail patch, but is needed when format-patch and applymbox pair is used for cherrypicking. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-05git-applymbox: allow retrying after fixing up.Libravatar Junio C Hamano1-15/+41
After failing to apply a patch, when operating under -q (query) flag, give the user an opportunity to fix up the patch in a separate window and retry. Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-07-23Fix up applymbox script for the addition of "git-" prefixLibravatar Linus Torvalds1-3/+3
Ehh, it works much better that way ;)
2005-07-23Rename the "tools" programs to also have the "git-" prefixLibravatar Linus Torvalds1-0/+63
Hey, people are using them, and we have an install target for them, so make sure that we can actually install them sanely without disturbing the namespace.