git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Improve error message: not a valid branch name
@ 2007-08-26 15:28 Jari Aalto
  2007-08-26 21:26 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Jari Aalto @ 2007-08-26 15:28 UTC (permalink / raw)
  To: git


(create_branch): Extend die message from 'is not a valid branch name'
to '...(see git-check-ref-format)'.

Signed-off-by: Jari Aalto <jari.aalto@cante.net>
---
 builtin-branch.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/builtin-branch.c b/builtin-branch.c
index 7408285..1006a85 100644
--- a/builtin-branch.c
+++ b/builtin-branch.c
@@ -431,7 +431,8 @@ static void create_branch(const char *name, const char *start_name,
 
 	snprintf(ref, sizeof ref, "refs/heads/%s", name);
 	if (check_ref_format(ref))
-		die("'%s' is not a valid branch name.", name);
+		die("'%s' is not a valid branch name "
+                    "(see git-check-ref-format)", name);
 
 	if (resolve_ref(ref, sha1, 1, NULL)) {
 		if (!force)
@@ -502,13 +503,15 @@ static void rename_branch(const char *oldname, const char *newname, int force)
 		die("Old branchname too long");
 
 	if (check_ref_format(oldref))
-		die("Invalid branch name: %s", oldref);
+		die("Invalid branch name: %s "
+                    "(see git-check-ref-format)", oldref);
 
 	if (snprintf(newref, sizeof(newref), "refs/heads/%s", newname) > sizeof(newref))
 		die("New branchname too long");
 
 	if (check_ref_format(newref))
-		die("Invalid branch name: %s", newref);
+		die("Invalid branch name: %s "
+                    "(see git-check-ref-format)", newref);
 
 	if (resolve_ref(newref, sha1, 1, NULL) && !force)
 		die("A branch named '%s' already exists.", newname);
-- 
1.5.3.rc5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-08-26 22:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-26 15:28 [PATCH] Improve error message: not a valid branch name Jari Aalto
2007-08-26 21:26 ` Junio C Hamano
2007-08-26 22:09   ` Jari Aalto
2007-08-26 22:25     ` J. Bruce Fields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).