Skip to content

Commit 2fc2752

Browse files
author
Junio C Hamano
committed
Merge branch 'master' into next
* master: git-pull: run repo-config with dash form.
2 parents c534c4b + f5ef535 commit 2fc2752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-pull.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ case "$merge_head" in
7070
exit 0
7171
;;
7272
?*' '?*)
73-
var=`git repo-config --get pull.octopus`
73+
var=`git-repo-config --get pull.octopus`
7474
if test -n "$var"
7575
then
7676
strategy_default_args="-s $var"
7777
fi
7878
;;
7979
*)
80-
var=`git repo-config --get pull.twohead`
80+
var=`git-repo-config --get pull.twohead`
8181
if test -n "$var"
8282
then
8383
strategy_default_args="-s $var"

0 commit comments

Comments
 (0)