private Repository(string name, string uri, string description) { Name = name; Uri = uri; Description = description; Branch = new Branch(); Branch.Create("master"); }
public void CreateBranch(string branchName) { Branch.Create(branchName); }