From d8dbcba49c278d2f5b3630ebcfe6d239649bf8e5 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 25 Apr 2018 10:24:10 +0100 Subject: [PATCH] Use https git remote by default --- cmd/jb/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/jb/main.go b/cmd/jb/main.go index 3e3daf5..71ba517 100644 --- a/cmd/jb/main.go +++ b/cmd/jb/main.go @@ -135,7 +135,7 @@ func RunSubcommand(ctx context.Context, cfg config, subcommand string, args []st Name: name, Source: spec.Source{ GitSource: &spec.GitSource{ - Remote: fmt.Sprintf("git@github.com:%s/%s", user, repo), + Remote: fmt.Sprintf("https://github.com/%s/%s", user, repo), Subdir: subdir, }, },