Re: [PATCH] pull: use merge-base --fork-point when appropriate

2013-12-09 Thread Jonathan Nieder
John Keeping wrote: > Since commit d96855f (merge-base: teach "--fork-point" mode, 2013-10-23) > we can replace a shell loop in git-pull with a single call to > git-merge-base. So let's do so. > > Signed-off-by: John Keeping > --- > git-pull.sh | 10 +- > 1 file changed, 1 insertion(+),

[PATCH] pull: use merge-base --fork-point when appropriate

2013-12-08 Thread John Keeping
Since commit d96855f (merge-base: teach "--fork-point" mode, 2013-10-23) we can replace a shell loop in git-pull with a single call to git-merge-base. So let's do so. Signed-off-by: John Keeping --- git-pull.sh | 10 +- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/git-pu