GitCommands.GitCommands.StageFile C# (CSharp) Method

StageFile() public static method

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