Exemplo n.º 1
0
        public ITask CommitAllFiles(string message, string body)
        {
            var task = GitClient.AddAll()
                       .Then(GitClient.Commit(message, body));

            return(HookupHandlers(task, true));
        }