We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba3010e commit 82e270fCopy full SHA for 82e270f
1 file changed
bin/mergedevbranch
@@ -142,6 +142,14 @@ if grep "@$rev $branch" $mergelog; then die "Changeset $branch@$rev is already i
142
143
note "Will attempt merge from $branch@$rev"
144
145
+# "Check there's no uncommitted changes ..."
146
+echo ""
147
+$do svn st | grep "^[AMGRD] " && {
148
+ echo ""
149
+ read -p "There are uncommitted changes. Really do merge? [y/N] "
150
+ [ "$REPLY" = "Y" -o "$REPLY" = "y" ] || exit
151
+}
152
+
153
note "Extract who and what:"
154
info=$(svn log ${repo}/ -r $rev --incremental)
155
set $(echo "$info" | tail -n +2 | head -n 1 | tr "|" "\t")
0 commit comments