Add branch functions #58

Merged
jezell merged 16 commits from add-branch-lookup into master 2014-03-10 20:59:33 -05:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 4c4da3a846 - Show all commits

View File

@ -115,7 +115,7 @@ func (b *Branch) IsHead() (bool, error) {
}
func (repo *Repository) BranchLookup(branchName string, bt BranchType) (*Branch, error) {
func (repo *Repository) LookupBranch(branchName string, bt BranchType) (*Branch, error) {
branch := new(Branch)
cName := C.CString(branchName)