diff --git a/Program.cs b/Program.cs index 7b93b3f..1ada5da 100644 --- a/Program.cs +++ b/Program.cs @@ -84,7 +84,7 @@ static async Task AsyncMain(IConfigurationRoot config) Console.WriteLine("Preparing repository..."); var git = new Git.Project(GetGitPath()); - git.Init($"https://github.com/{gitHubConfig["organization"]}/{gitHubConfig["repository"]}.git"); + git.Init($"git@github.com:{gitHubConfig["organization"]}/{gitHubConfig["repository"]}.git"); git.Fetch(); git.ResetHard(); git.Clean();