GitCommands.GitCommands.Commit C# (CSharp) Method

Commit() public static method

public static Commit ( bool amend ) : string
amend bool
return string
        public static string Commit(bool amend)
        {
            return RunCmd(Settings.GitCommand, CommitCmd(amend));
        }
GitCommands