GitCommands.GitCommands.ResetHardCmd C# (CSharp) Method

ResetHardCmd() public static method

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