* [PATCH 5/6] Update git-tag-script to create the .git/refs/tags if it does not already exist
@ 2005-07-15 1:00 Eric W. Biederman
0 siblings, 0 replies; only message in thread
From: Eric W. Biederman @ 2005-07-15 1:00 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
When testing tags I ran into an interesting problem.
git-tag-script dies if .git/refs/tags/ does not exist.
And that directory didn't get created when I build my repository,
so we need to create it if it doesn't exist.
Signed-of-by: Eric W. Biederman <ebiederm@xmission.com>
---
git-tag-script | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
362c96f2a2959b648c8313d3530ea1e6df17e96c
diff --git a/git-tag-script b/git-tag-script
--- a/git-tag-script
+++ b/git-tag-script
@@ -20,5 +20,6 @@ grep -v '^#' < .editmsg | git-stripspace
( echo -e "object $object\ntype $type\ntag $name\n"; cat .tagmsg ) > .tmp-tag
rm -f .tmp-tag.asc .tagmsg
gpg -bsa .tmp-tag && cat .tmp-tag.asc >> .tmp-tag
+mkdir -p "$GIT_DIR/refs/tags"
git-mktag < .tmp-tag > "$GIT_DIR/refs/tags/$name"
#rm .tmp-tag .tmp-tag.sig
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-15 1:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-15 1:00 [PATCH 5/6] Update git-tag-script to create the .git/refs/tags if it does not already exist Eric W. Biederman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox