Esempio n. 1
0
 public static void Init(InitCommand command)
 {
     command.Execute();
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a repository. Use GitDirectory to specify the location. Default is the current directory.
 /// </summary>
 /// <param name="path"></param>
 /// <param name="bare"></param>
 /// <returns></returns>
 public static Repository Init(string path, bool bare)
 {
     var cmd = new InitCommand() { GitDirectory=path, Bare = bare };
     return Init(cmd);
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a repository in the current location using the provided git command's options.
 /// </summary>
 /// <param name="path"></param>
 /// <param name="bare"></param>
 /// <returns></returns>
 public static Repository Init(InitCommand cmd)
 {
     cmd.Execute();
     return cmd.Repository;
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a repository. Use GitDirectory to specify the location. Default is the current directory.
 /// </summary>
 /// <param name="path"></param>
 /// <param name="bare"></param>
 /// <returns></returns>
 public static Repository Init(bool bare)
 {
     var cmd = new InitCommand() { Bare = bare };
     cmd.Execute();
     return cmd.InitializedRepository;
 }