commit | ec2c895cef70b24381594522328b97234a271986 | [log] [tgz] |
---|---|---|
author | Vincent Driessen <vincent@datafox.nl> | 周一 1月 25 22:40:13 2010 +0100 |
committer | Vincent Driessen <vincent@datafox.nl> | 周一 1月 25 22:40:13 2010 +0100 |
tree | 63b74142564073e5d3902c4b68413202211fbcb3 | |
parent | ab4b80d5b327d7c85aac2a0cabe9c9d898f5f12f [diff] [blame] |
Add extra line to error message for clarification.
diff --git a/gitflow-sh-setup b/gitflow-sh-setup index f24025d..2facfe1 100755 --- a/gitflow-sh-setup +++ b/gitflow-sh-setup
@@ -53,7 +53,7 @@ gitflow_require_branch_absent() { echo "$ALL_BRANCHES" | grep "^$1\$" 2>/dev/null >/dev/null if [ $? -eq 0 ]; then - die "Branch '$1' already exists." + die "Branch '$1' already exists. Pick another name." fi }