Init() 공개 정적인 메소드

Initializes a repository in the current location using the provided git command's options.
public static Init ( InitCommand cmd ) : Repository
cmd InitCommand
리턴 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);
 }