GitCommands.GitCommands.UnstageFile C# (CSharp) Method

UnstageFile() public static method

public static UnstageFile ( string file ) : string
file string
return string
        public static string UnstageFile(string file)
        {
            return RunCmd(Settings.GitCommand, "rm" + " --cached \"" + FixPath(file) + "\"");
        }
GitCommands