Skip to content

Commit

Permalink
pull: remove extra space from reflog message
Browse files Browse the repository at this point in the history
When executing "git pull" with no arguments, the reflog message was:
  "pull : Fast-forward"

Signed-off-by: Ori Avtalion <ori@avtalion.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ori Avtalion authored and Junio C Hamano committed Aug 1, 2011
1 parent d5b6629 commit c98d1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LONG_USAGE='Fetch one or more remote refs and merge it/them into the current HEA
SUBDIRECTORY_OK=Yes
OPTIONS_SPEC=
. git-sh-setup
set_reflog_action "pull $*"
set_reflog_action "pull${1+ $*}"
require_work_tree
cd_to_toplevel

Expand Down

0 comments on commit c98d1e4

Please sign in to comment.