aboutsummaryrefslogtreecommitdiffstats
path: root/merge-recursive.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-02-16 14:08:00 -0800
committerJunio C Hamano <gitster@pobox.com>2012-02-16 14:08:00 -0800
commit6c63ab3ca7abc50155acc6c28380435fb79f7fa9 (patch)
tree61f4f31ceb45e7be429055e9a34df66ba69d7764 /merge-recursive.c
parentMerge branch 'mm/empty-loose-error-message' into maint (diff)
parentcommit: ignore intent-to-add entries instead of refusing (diff)
downloadgit-6c63ab3ca7abc50155acc6c28380435fb79f7fa9.tar.gz
git-6c63ab3ca7abc50155acc6c28380435fb79f7fa9.zip
Merge branch 'jc/maint-commit-ignore-i-t-a' into maint
* jc/maint-commit-ignore-i-t-a: commit: ignore intent-to-add entries instead of refusing Conflicts: cache-tree.c
Diffstat (limited to 'merge-recursive.c')
0 files changed, 0 insertions, 0 deletions
8bb19511e7ce526819d&follow=1'>Make rebase script saner.Junio C Hamano1-7/+10 It did not check to see if the working tree was clean and matched the commit we were starting out as, resulting in the initial rebased commit including whatever dirty state the working tree has had. Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17Make sure alternates are carried over from the original repository.Junio C Hamano1-1/+5 When we create a cheap local clone by pointing at the object databse of the original repository, we forgot to take the alternates the original repository might have had into account. Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17Fix git-commit without paths.Junio C Hamano1-2/+4 The earlier one to grab output from diff-files --name-only has a grave bug that when no paths are given it ended up doing the equivalent of "git-commit --all", which was not what I intended. Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17[PATCH] Make git-update-cache take relative pathnamesLinus Torvalds1-0/+2 This also makes "./filename" acceptable as a side effect, since the pathname normalization handles that too. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17[PATCH] Export relative path handling "prefix_path()" functionLinus Torvalds2-1/+2 Not all programs necessarily have a pathspec array of pathnames, some of them (like git-update-cache) want to do things one file at a time. So export the single-path interface too. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17[PATCH] git-cvsimport - remove hardcoded reference to originMartin Langhoff1-1/+1 ... in the newly introduced merge detection code. Signed-off-by: Martin Langhoff <martin.langhoff@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net> 2005-08-17[PATCH] Add merge detection to git-cvsimportMartin Langhoff2-5/+55 Added -m and -M flags for git-cvsimport to detect merge commits in cvs. While this trusts the commit message, in repositories where merge commits indicate 'merged from FOOBRANCH' the import works surprisingly well. Even if some merges from CVS are bogus or incomplete, the resulting branches are in better state to go forward (and merge) than without any merge detection. Signed-off-by: Martin Langhoff <martin.langhoff@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>