From c930d6e035c0d44c5b25a0740c08623948d2f420 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 22 Oct 2017 21:44:01 +0200 Subject: [PATCH] =?UTF-8?q?use=20=E2=80=9Cgbp=20push=E2=80=9D=20instead=20?= =?UTF-8?q?of=20git=20push=20with=20tags=20and=20branches?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- make.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make.go b/make.go index ed9a2ad..6620d1e 100644 --- a/make.go +++ b/make.go @@ -818,5 +818,6 @@ func main() { log.Printf(" ssh git.debian.org \"/git/pkg-go/setup-repository %s 'Packaging for %s'\"\n", debsrc, debsrc) log.Printf("\n") log.Printf("Once you are happy with your packaging, push it to alioth using:\n") - log.Printf(" git push git+ssh://git.debian.org/git/pkg-go/packages/%s.git --tags master pristine-tar upstream\n", debsrc) + log.Printf(" git remote set-url origin git+ssh://git.debian.org/git/pkg-go/packages/%s.git\n", debsrc) + log.Printf(" gbp push\n") }