GitCommands.GitModule.StageFile C# (CSharp) Method

StageFile() public method

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