Init() public static method

Initializes a repository in the current location using the provided git command's options.
public static Init ( InitCommand cmd ) : Repository
cmd InitCommand
return Repository
Exemplo n.º 1
0
 public static void Init(string path, bool bare)
 {
     Repository.Init(path, bare);
 }
Exemplo n.º 2
0
 public static void Init(string path)
 {
     Repository.Init(path);
 }