GitCommands.CommitDto.CommitDto C# (CSharp) Method

CommitDto() public method

public CommitDto ( string message, bool amend ) : System
message string
amend bool
return System
        public CommitDto(string message, bool amend)
        {
            Message = message;
            Amend = amend;
        }
CommitDto