From: Ian Jackson Date: Sat, 18 Jan 2014 22:50:46 +0000 (+0000) Subject: Bring forward push of the version tag ref so it happens alongside the push of the... X-Git-Tag: debian/0.22~102 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=719b7338435ff81dd36db3fa416d6f397f1d1566 Bring forward push of the version tag ref so it happens alongside the push of the suite branch ref. --- diff --git a/debian/changelog b/debian/changelog index e98fd2fb..95f563b1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ dgit (0.22~experimental1) experimental; urgency=low * New git-check and git-create methods "true" which are no-ops. + * Bring forward push of the version tag ref so it happens alongside + the push of the suite branch ref. * dgit-push-responder: WIP -- diff --git a/dgit b/dgit index 3c56a3ae..0a5de292 100755 --- a/dgit +++ b/dgit @@ -1435,6 +1435,7 @@ sub dopush () { create_remote_git_repo(); } runcmd_ordryrun @git, qw(push),access_giturl(),"HEAD:".rrref(); + runcmd_ordryrun @git, qw(push),access_giturl(),"refs/tags/$tag"; runcmd_ordryrun @git, qw(update-ref -m), 'dgit push', lrref(), 'HEAD'; if (!$we_are_responder) { @@ -1454,7 +1455,6 @@ sub dopush () { sign_changes $changesfile; } - runcmd_ordryrun @git, qw(push),access_giturl(),"refs/tags/$tag"; my $host = access_cfg('upload-host','RETURN-UNDEF'); my @hostarg = defined($host) ? ($host,) : (); runcmd_ordryrun @dput, @hostarg, $changesfile;