GitCommands.GitModule.StageFileToRemove C# (CSharp) Method

StageFileToRemove() public method

public StageFileToRemove ( string file ) : string
file string
return string
        public string StageFileToRemove(string file)
        {
            return RunGitCmd("update-index --remove" + " \"" + file.ToPosixPath() + "\"");
        }
GitModule