File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 100
100
if test $? -ne 0
101
101
then
102
102
gettextln " Simple merge did not work, trying automatic merge."
103
- git- merge-index -o git-merge-one-file -a ||
103
+ git merge-index -o git-merge-one-file -a ||
104
104
OCTOPUS_FAILURE=1
105
105
next=$( git write-tree 2> /dev/null)
106
106
fi
Original file line number Diff line number Diff line change @@ -115,16 +115,16 @@ case "${1:-.}${2:-.}${3:-.}" in
115
115
;;
116
116
esac
117
117
118
- src1=$( git- unpack-file $2 )
119
- src2=$( git- unpack-file $3 )
118
+ src1=$( git unpack-file $2 )
119
+ src2=$( git unpack-file $3 )
120
120
case " $1 " in
121
121
' ' )
122
122
echo " Added $4 in both, but differently."
123
- orig=$( git- unpack-file e69de29bb2d1d6434b8b29ae775ad8c2e48c5391)
123
+ orig=$( git unpack-file e69de29bb2d1d6434b8b29ae775ad8c2e48c5391)
124
124
;;
125
125
* )
126
126
echo " Auto-merging $4 "
127
- orig=$( git- unpack-file $1 )
127
+ orig=$( git unpack-file $1 )
128
128
;;
129
129
esac
130
130
Original file line number Diff line number Diff line change 45
45
exit 0
46
46
else
47
47
echo " Simple merge failed, trying Automatic merge."
48
- if git- merge-index -o git-merge-one-file -a
48
+ if git merge-index -o git-merge-one-file -a
49
49
then
50
50
exit 0
51
51
else
Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ apply_stash () {
573
573
574
574
if test -n " $u_tree "
575
575
then
576
- GIT_INDEX_FILE=" $TMPindex " git- read-tree " $u_tree " &&
576
+ GIT_INDEX_FILE=" $TMPindex " git read-tree " $u_tree " &&
577
577
GIT_INDEX_FILE=" $TMPindex " git checkout-index --all &&
578
578
rm -f " $TMPindex " ||
579
579
die " $( gettext " Could not restore untracked files from stash entry" ) "
Original file line number Diff line number Diff line change @@ -864,7 +864,7 @@ cmd_summary() {
864
864
test $status ! = A && test $ignore_config = all && continue
865
865
fi
866
866
# Also show added or modified modules which are checked out
867
- GIT_DIR=" $sm_path /.git" git- rev-parse --git-dir > /dev/null 2>&1 &&
867
+ GIT_DIR=" $sm_path /.git" git rev-parse --git-dir > /dev/null 2>&1 &&
868
868
printf ' %s\n' " $sm_path "
869
869
done
870
870
)
@@ -898,11 +898,11 @@ cmd_summary() {
898
898
missing_dst=
899
899
900
900
test $mod_src = 160000 &&
901
- ! GIT_DIR=" $name /.git" git- rev-parse -q --verify $sha1_src ^0 > /dev/null &&
901
+ ! GIT_DIR=" $name /.git" git rev-parse -q --verify $sha1_src ^0 > /dev/null &&
902
902
missing_src=t
903
903
904
904
test $mod_dst = 160000 &&
905
- ! GIT_DIR=" $name /.git" git- rev-parse -q --verify $sha1_dst ^0 > /dev/null &&
905
+ ! GIT_DIR=" $name /.git" git rev-parse -q --verify $sha1_dst ^0 > /dev/null &&
906
906
missing_dst=t
907
907
908
908
display_name=$( git submodule--helper relative-path " $name " " $wt_prefix " )
You can’t perform that action at this time.
0 commit comments