X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-pull.sh;h=f380437997f053d15a177a941f3b8a1543c56a18;hb=9ccb64c8e0791a865ad520bcfff4b02cc7c50097;hp=076785c96b30b4fd8ab944324fd53db7c584567a;hpb=8096fae7269e7b3882394100151bc017446b01a1;p=git.git diff --git a/git-pull.sh b/git-pull.sh index 076785c96..f38043799 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -45,7 +45,7 @@ do done orig_head=$(git-rev-parse --verify HEAD) || die "Pulling into a black hole?" -git-fetch --update-head-ok "$@" || exit 1 +git-fetch --update-head-ok --reflog-action=pull "$@" || exit 1 curr_head=$(git-rev-parse --verify HEAD) if test "$curr_head" != "$orig_head" @@ -102,5 +102,6 @@ case "$strategy_args" in esac merge_name=$(git-fmt-merge-msg <"$GIT_DIR/FETCH_HEAD") || exit -git-merge $no_summary $no_commit $squash $strategy_args \ +git-merge "--reflog-action=pull $*" \ + $no_summary $no_commit $squash $strategy_args \ "$merge_name" HEAD $merge_head