Skip to content
Snippets Groups Projects
Commit 7358f266 authored by Stanley Goldman's avatar Stanley Goldman
Browse files

Add/Commit works; AddAndCommit doesn't

parent 77850feb
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,9 @@ namespace GitHub.Unity
assetsGitignore.CreateFile();
}))
.Then(ApplicationManager.GitClient.AddAndCommit(filesForInitialCommit, "Initial commit", null))
//.Then(ApplicationManager.GitClient.AddAndCommit(filesForInitialCommit, "Initial commit", null))
.Then(ApplicationManager.GitClient.Add(filesForInitialCommit))
.Then(ApplicationManager.GitClient.Commit("Initial commit", null))
.Then(ApplicationManager.RestartRepository())
.Start();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment