From 08db81a9f1e4072790f0257f5398e8408e3d6816 Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Mon, 14 Nov 2005 23:10:59 +0100 Subject: allow git-update-ref create refs with slashes in names Make git-update-ref create references with slashes in them. git-branch and git-checkout already support such reference names. git-branch can use git-update-ref to create the references in a more formal manner now. Signed-off-by: Junio C Hamano --- git-branch.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'git-branch.sh') diff --git a/git-branch.sh b/git-branch.sh index 67f113acb9..11d52fd78e 100755 --- a/git-branch.sh +++ b/git-branch.sh @@ -102,6 +102,5 @@ rev=$(git-rev-parse --verify "$head") || exit git-check-ref-format "heads/$branchname" || die "we do not like '$branchname' as a branch name." -leading=`expr "refs/heads/$branchname" : '\(.*\)/'` && -mkdir -p "$GIT_DIR/$leading" && -echo $rev > "$GIT_DIR/refs/heads/$branchname" +git update-ref "refs/heads/$branchname" $rev + -- cgit v1.3