From ae9b5f5a0d9cd93b670c1bd054c05e2c72974110 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 20 Apr 2007 08:14:45 -0700 Subject: [PATCH] Explicitly push only the new tag, don't use --tags When the --tags option is supplied, *every* tag in the local repository is pushed to the remote repository, even tags which are unrelated to the release process or contain ultra-secret corporate information like PCI-IDs. --- release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index c60abd1..4a990e7 100755 --- a/release.sh +++ b/release.sh @@ -120,5 +120,5 @@ echo "installing release into server" scp $tarball_dir/$targz $tarball_dir/$tarbz2 $host_people:$srv_path echo "pushing changes upstream" -git push origin -git push --tags origin +git push origin $tag_current + -- 2.11.4.GIT