X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-pull.sh;h=e23d4f559790fed079bb5759fd5aa11a8804f191;hb=c17fb6ee074cb0c9d71e5de42e2ad00786fedc18;hp=d4765188b4ad9d41a0ffec333d9b449de03968a6;hpb=619e5a0ed4a53653085961b7aefe1f93ed879949;p=git.git diff --git a/git-pull.sh b/git-pull.sh index d4765188..e23d4f55 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -7,16 +7,18 @@ . git-sh-setup || die "Not a git archive" usage () { - die "git pull [-n] [-s strategy]... ..." + die "git pull [-n] [--no-commit] [-s strategy]... ..." } -strategy_args= no_summary= +strategy_args= no_summary= no_commit= while case "$#,$1" in 0) break ;; *,-*) ;; *) break ;; esac do case "$1" in -n|--n|--no|--no-|--no-s|--no-su|--no-sum|--no-summ|\ --no-summa|--no-summar|--no-summary) no_summary=-n ;; + --no-c|--no-co|--no-com|--no-comm|--no-commi|--no-commit) + no_commit=--no-commit ;; -s=*|--s=*|--st=*|--str=*|--stra=*|--strat=*|--strate=*|\ --strateg=*|--strategy=*|\ -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy) @@ -81,4 +83,4 @@ case "$strategy_args" in esac merge_name=$(git-fmt-merge-msg <"$GIT_DIR/FETCH_HEAD") -git-merge $no_summary $strategy_args "$merge_name" HEAD $merge_head +git-merge $no_summary $no_commit $strategy_args "$merge_name" HEAD $merge_head