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
コード例 #1
0
ファイル: Commands.cs プロジェクト: kkl713/GitSharp
 public static void Init(string path, bool bare)
 {
     Repository.Init(path, bare);
 }
コード例 #2
0
ファイル: Commands.cs プロジェクト: kkl713/GitSharp
 public static void Init(string path)
 {
     Repository.Init(path);
 }