Sep.Git.Tfs.Util.CheckinOptionsFactory.BuildCommitSpecificCheckinOptions C# (CSharp) Method

BuildCommitSpecificCheckinOptions() public method

public BuildCommitSpecificCheckinOptions ( CheckinOptions sourceCheckinOptions, string commitMessage ) : CheckinOptions
sourceCheckinOptions Sep.Git.Tfs.Commands.CheckinOptions
commitMessage string
return Sep.Git.Tfs.Commands.CheckinOptions
        public CheckinOptions BuildCommitSpecificCheckinOptions(CheckinOptions sourceCheckinOptions, string commitMessage)
        {
            var customCheckinOptions = sourceCheckinOptions.Clone(_globals);

            customCheckinOptions.CheckinComment = commitMessage;

            customCheckinOptions.ProcessWorkItemCommands();

            customCheckinOptions.ProcessCheckinNoteCommands();

            customCheckinOptions.ProcessForceCommand();

            return customCheckinOptions;
        }

Same methods

CheckinOptionsFactory::BuildCommitSpecificCheckinOptions ( CheckinOptions sourceCheckinOptions, string commitMessage, GitCommit commit, AuthorsFile authors ) : CheckinOptions