Skip to content

Commit 862808c

Browse files
committed
Too good to be true. I don't know what the svn merge command does with -x -b, but id doesn't merge without whitespace changes. Reverting the previous change to bin/mergedevbranch.
- Legacy-Id: 10549
1 parent 452166a commit 862808c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bin/mergedevbranch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ read -p "Continue with diff? [Y/n] "
149149
[ "$REPLY" = "Y" -o "$REPLY" = "y" -o "$REPLY" = "" ] || exit
150150
151151
note "Diff:"
152-
svn diff -c $rev -x"-u -b" $repo/$branch | less
152+
svn diff -c $rev $repo/$branch | less
153153
154154
echo ""
155155
read -p "Additional descriptive text (hit return for none): "
@@ -165,10 +165,10 @@ read -p "Continue with the merge? [Y/n] "
165165
166166
note "Do the merge:"
167167
if [[ $rev =~ : ]]; then
168-
svn merge -r $rev -x"-u -b" ${repo}/$branch . || die "Merge of $branch @$rev failed. The merge command was:
168+
svn merge -r $rev ${repo}/$branch . || die "Merge of $branch @$rev failed. The merge command was:
169169
svn merge -r $rev ${repo}/$branch ."
170170
else
171-
svn merge -c $rev -x"-u -b" ${repo}/$branch . || die "Merge of $branch @$rev failed. The merge command was:
171+
svn merge -c $rev ${repo}/$branch . || die "Merge of $branch @$rev failed. The merge command was:
172172
svn merge -c $rev ${repo}/$branch ."
173173
fi
174174

0 commit comments

Comments
 (0)