GitCommands.GitModule.ResetFile C# (CSharp) Method

ResetFile() public method

public ResetFile ( string file ) : string
file string
return string
        public string ResetFile(string file)
        {
            file = file.ToPosixPath();
            return RunGitCmd("checkout-index --index --force -- \"" + file + "\"");
        }
GitModule