-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove unnecessary repo level config
- Loading branch information
Showing
1 changed file
with
0 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,9 +79,6 @@ func (g *GitClient) Init(branch string) error { | |
if err := g.command("git", "config", "user.email", "concourse@local").Run(); err != nil { | ||
return fmt.Errorf("failed to configure git email: %s", err) | ||
} | ||
if err := g.command("git", "config", "url.https://[email protected]/.insteadOf", "[email protected]:").Run(); err != nil { | ||
return fmt.Errorf("failed to configure github url: %s", err) | ||
} | ||
return nil | ||
} | ||
|
||
|