GitCommands.GitCommands.ResetMixedCmd C# (CSharp) Method

ResetMixedCmd() public static method

public static ResetMixedCmd ( string commit ) : string
commit string
return string
        public static string ResetMixedCmd(string commit)
        {
            return "reset --mixed \"" + commit + "\"";
        }
GitCommands