GitCommands.GitCommands.Stash C# (CSharp) Method

Stash() public static method

public static Stash ( ) : string
return string
        public static string Stash()
        {
            return RunCmd(Settings.GitCommand, "stash save");
        }
GitCommands