aboutsummaryrefslogtreecommitdiff
path: root/models/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/models/repo.go b/models/repo.go
index a0074a29..8ce1f719 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -288,20 +288,6 @@ func (repo *Repository) GetMirror() (err error) {
return err
}
-func (repo *Repository) GetBranch(br string) (*Branch, error) {
- if(!git.IsBranchExist(repo.RepoPath(), br)){
- return nil, fmt.Errorf("Branch does not exist: %s", br);
- }
- return &Branch{
- Path: repo.RepoPath(),
- Name: br,
- },nil
-}
-
-func (repo *Repository) GetBranches() ([]*Branch, error) {
- return GetBranchesByPath(repo.RepoPath())
-}
-
func (repo *Repository) GetBaseRepo() (err error) {
if !repo.IsFork {
return nil