Implemented branch functions. #45

Merged
yoo merged 7 commits from branch_functions into master 2014-03-10 20:59:34 -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)