author | Junio C Hamano <junkio@cox.net> | |
Fri, 14 Oct 2005 01:57:39 +0000 (18:57 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 15 Oct 2005 18:23:39 +0000 (11:23 -0700) | ||
commit | 03feddd6e8e779086ac2d131ded325f8e5601653 | |
tree | 2e3014b9197bcb57d48af9e62c193b1ffc6a67bd | tree | snapshot |
parent | f51248eb482a7a0feacb04d02119c94d35845975 | commit | diff |
git-check-ref-format: reject funny ref names.
Update check_ref_format() function to reject ref names that:
* has a path component that begins with a ".", or
* has a double dots "..", or
* has ASCII control character, "~", "^", ":" or SP, anywhere, or
* ends with a "/".
Use it in 'git-checkout -b', 'git-branch', and 'git-tag' to make sure
that newly created refs are well-formed.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Update check_ref_format() function to reject ref names that:
* has a path component that begins with a ".", or
* has a double dots "..", or
* has ASCII control character, "~", "^", ":" or SP, anywhere, or
* ends with a "/".
Use it in 'git-checkout -b', 'git-branch', and 'git-tag' to make sure
that newly created refs are well-formed.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | diff | blob | history | |
check-ref-format.c | [new file with mode: 0644] | blob |
git-branch.sh | diff | blob | history | |
git-checkout.sh | diff | blob | history | |
git-tag.sh | diff | blob | history | |
refs.c | diff | blob | history |