GitCommands.GitCommands.ResetFile C# (CSharp) Method

ResetFile() public static method

public static ResetFile ( string file ) : string
file string
return string
        public static string ResetFile(string file)
        {
            file = FixPath(file);
            return RunCmd(Settings.GitCommand, "checkout-index --index --force -- \"" + file + "\"");
        }
GitCommands