We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3472072 commit 4f2ef55Copy full SHA for 4f2ef55
tools/git-mrb
@@ -74,7 +74,7 @@ git push {upstream} {onto}
74
*************************************************************
75
""".format(**shvars)
76
77
-ans = raw_input("Revert to master and delete temporary branch? [y/N]: ")
78
-if ans.lower() in ('y', 'yes'):
+ans = raw_input("Revert to master and delete temporary branch? [Y/n]: ")
+if ans.strip().lower() in ('', 'y', 'yes'):
79
sh('git checkout {onto}')
80
sh('git branch -D {branch_spec}')
0 commit comments