GitCommands.GitCommands.StashClear C# (CSharp) Method

StashClear() public static method

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