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

BuildShelveSetSpecificCheckinOptions() public method

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

            customCheckinOptions.CheckinComment = commitMessage;

            customCheckinOptions.ProcessWorkItemCommands(false);

            return customCheckinOptions;
        }