public void Branch(string branch) { using (Logger.IndentLog($"Create a branch with name: {branch}")) { _repository.Branch(branch); } }
public void CreateBranch(string branch) { _repository.Branch(branch); }