]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Merge branch 'rr/forbid-bs-in-ref'
authorJunio C Hamano <gitster@pobox.com>
Sat, 23 May 2009 08:39:45 +0000 (01:39 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 23 May 2009 08:39:45 +0000 (01:39 -0700)
* rr/forbid-bs-in-ref:
  Disallow '\' in ref names

Documentation/git-check-ref-format.txt
refs.c

index 0873e60f7f61f51143e88fd8637b34627620a7dd..0b7982ea76633e45b8d3073cd275ea74a757c0eb 100644 (file)
@@ -42,6 +42,8 @@ imposes the following rules on how references are named:
 
 . They cannot contain a sequence `@{`.
 
+- They cannot contain a `\\`.
+
 These rules make it easy for shell script based tools to parse
 reference names, pathname expansion by the shell when a reference name is used
 unquoted (by mistake), and also avoids ambiguities in certain
diff --git a/refs.c b/refs.c
index 2b1f0f0e6ed7978107e5b488f8d12f6276e482a4..bb4bdc9eac9a3cb5a122437f14a0f175511b1493 100644 (file)
--- a/refs.c
+++ b/refs.c
@@ -682,12 +682,13 @@ int for_each_rawref(each_ref_fn fn, void *cb_data)
  * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
  * - it ends with a "/".
  * - it ends with ".lock"
+ * - it contains a "\" (backslash)
  */
 
 static inline int bad_ref_char(int ch)
 {
        if (((unsigned) ch) <= ' ' ||
-           ch == '~' || ch == '^' || ch == ':')
+           ch == '~' || ch == '^' || ch == ':' || ch == '\\')
                return 1;
        /* 2.13 Pattern Matching Notation */
        if (ch == '?' || ch == '[') /* Unsupported */