GitCommands.GitCommands.StageFileToRemove C# (CSharp) Method

StageFileToRemove() public static method

public static StageFileToRemove ( string file ) : string
file string
return string
        public static string StageFileToRemove(string file)
        {
            return RunCmd(Settings.GitCommand, "update-index --remove" + " \"" + FixPath(file) + "\"");
        }
GitCommands