GitCommands.GitCommands.StageFile C# (CSharp) 메소드

StageFile() 공개 정적인 메소드

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