summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-03-01 01:33:23 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2006-03-01 01:33:23 -0800
commit6ecc321ba5d8f89a8dd0a9a11d264d03ab624dc1 (patch)
treef69024c88ec5d36dd07ea04eb29a3e459ff81c78
parentMerge part of np/delta (diff)
parentcvsserver: Eclipse compat - browsing 'modules' (heads in our case) works (diff)
parentcvsserver: Eclipse compat - browsing 'modules' (heads in our case) works (diff)
downloadtgif-6ecc321ba5d8f89a8dd0a9a11d264d03ab624dc1.tar.xz
Merge branch 'cvsserver' of http://locke.catalyst.net.nz/git/git-martinlanghoff; branch 'master' into next
Conflicts: Documentation/git-cvsserver.txt git-cvsserver.perl Originally Martin's tree was based on "next", which meant that all the other things that I am not ready to push out to "master" were contained in it. His changes looked good, and I wanted to have them in "master". So, here is what I did: - fetch Martin's tree into a temporary topic branch. $ git fetch $URL $remote:ml/cvsserver $ git checkout ml/cvsserver - rebase it on top of "master". $ git rebase --onto master next - pull that master into "next", recording Martin's head as well. $ git pull --append . master Since I have apply.whitespace=strip in my configuration file, the rebased cvsserver changes have trailing whitespaces introduced by Martin's tree cleansed out. Hence the above conflicts. The reason I made this octopus is to make sure that next time Martin pulls from my "next" branch, it results in a fast forward. There is no reason to force him do the same conflict resolution I did with this merge. Signed-off-by: Junio C Hamano <junkio@cox.net>