GitCommands.GitCommands.UnstageFileToRemove C# (CSharp) Method

UnstageFileToRemove() public static method

public static UnstageFileToRemove ( string file ) : string
file string
return string
        public static string UnstageFileToRemove(string file)
        {
            return RunCmd(Settings.GitCommand, "reset HEAD --" + " \"" + FixPath(file) + "\"");
        }
GitCommands