We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea72560 commit 573e2baCopy full SHA for 573e2ba
1 file changed
git.go
@@ -79,9 +79,6 @@ func (g *GitClient) Init(branch string) error {
79
if err := g.command("git", "config", "user.email", "concourse@local").Run(); err != nil {
80
return fmt.Errorf("failed to configure git email: %s", err)
81
}
82
- if err := g.command("git", "config", "url.https://x-oauth-basic@github.com/.insteadOf", "git@github.com:").Run(); err != nil {
83
- return fmt.Errorf("failed to configure github url: %s", err)
84
- }
85
return nil
86
87
0 commit comments