Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  git-merge: minor fix for no_trivial_merge_strategies.
  • Loading branch information
Junio C Hamano committed Feb 16, 2007
2 parents af99711 + de6f0de commit 53756f2
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions git-merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,15 @@ esac

for s in $use_strategies
do
case " $s " in
*" $no_trivial_merge_strategies "*)
index_merge=f
break
;;
esac
for nt in $no_trivial_merge_strategies
do
case " $s " in
*" $nt "*)
index_merge=f
break
;;
esac
done
done

case "$#" in
Expand Down

0 comments on commit 53756f2

Please sign in to comment.