branch: Renamed BranchCreate to CreateBranch

This commit is contained in:
Johann Weging 2013-10-08 14:49:03 +02:00
parent 771e0c11bc
commit 6372ec052f
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ type Branch struct {
Reference
}
func (repo *Repository) BranchCreate(branchName string, target *Commit, force bool) (*Reference, error) {
func (repo *Repository) CreateBranch(branchName string, target *Commit, force bool) (*Reference, error) {
ref := new(Reference)
cBranchName := C.CString(branchName)
cForce := cbool(force)