summaryrefslogtreecommitdiff
path: root/git-export.c
AgeCommit message (Collapse)AuthorFilesLines
2005-04-29Rename git core commands to be "git-xxxx" to avoid name clashes.Libravatar Linus Torvalds1-81/+0
This also regularizes the make. The source files themselves don't get the "git-" prefix, because that's just inconvenient. So instead we just make the rule that "git-xxxx" depends on "xxxx.c", and do that for all the core programs (ie the old "git-mktag.c" got renamed to just "mktag.c" to match everything else). And "show-diff" got renamed to "git-diff-files" while at it, since that's what it really should be to match the other git-diff-xxx cases.
2005-04-28[PATCH] diff-tree does not need -r in git-export.cLibravatar Junio C Hamano1-1/+1
No need to pass -r anymore, since diff-tree -p implies recursive behaviour these days. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-04-27[PATCH] Use diff-tree -p -r instead of "git diff" in git-export.Libravatar Junio C Hamano1-1/+1
Now diff-tree can produce patch itself, there is no reason to depend on Cogito to show diff in the git-export output anymore. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-04-20Duh, just make git-export.c use the proper syntax, everything is fine.Libravatar Linus Torvalds1-1/+1
2005-04-20Fix up git-export to use the lower-level interfaces for diff generation.Libravatar Linus Torvalds1-1/+1
The high-level helpers seem to have forgotten what to do with sha1 names.
2005-04-19Add stupid "git export" thing, which can export a git archiveLibravatar Linus Torvalds1-0/+81
as a set of patches and commentary. You'd want something like this if you are tracking a git archive in another SCM format. Notably, we want something like that for BK users.