aboutsummaryrefslogtreecommitdiffstats
path: root/repository
diff options
context:
space:
mode:
Diffstat (limited to 'repository')
-rw-r--r--repository/git.go19
-rw-r--r--repository/mock_repo.go16
-rw-r--r--repository/repo.go4
3 files changed, 0 insertions, 39 deletions
diff --git a/repository/git.go b/repository/git.go
index d55def9e..5b5cbc3d 100644
--- a/repository/git.go
+++ b/repository/git.go
@@ -257,25 +257,6 @@ func (repo *GitRepo) ListRefs(refspec string) ([]string, error) {
return splitted, nil
}
-// ListIds will return a list of Git ref matching the given refspec,
-// stripped to only the last part of the ref
-func (repo *GitRepo) ListIds(refspec string) ([]string, error) {
- // the format option will strip the ref name to keep only the last part (ie, the bug id)
- stdout, err := repo.runGitCommand("for-each-ref", "--format=%(refname:lstrip=-1)", refspec)
-
- if err != nil {
- return nil, err
- }
-
- splitted := strings.Split(stdout, "\n")
-
- if len(splitted) == 1 && splitted[0] == "" {
- return []string{}, nil
- }
-
- return splitted, nil
-}
-
// RefExist will check if a reference exist in Git
func (repo *GitRepo) RefExist(ref string) (bool, error) {
stdout, err := repo.runGitCommand("for-each-ref", ref)
diff --git a/repository/mock_repo.go b/repository/mock_repo.go
index 20fb3d87..50907876 100644
--- a/repository/mock_repo.go
+++ b/repository/mock_repo.go
@@ -3,7 +3,6 @@ package repository
import (
"crypto/sha1"
"fmt"
- "strings"
"github.com/MichaelMure/git-bug/util"
)
@@ -140,21 +139,6 @@ func (r *mockRepoForTest) ListRefs(refspec string) ([]string, error) {
return keys, nil
}
-// ListIds will return a list of Git ref matching the given refspec,
-// stripped to only the last part of the ref
-func (r *mockRepoForTest) ListIds(refspec string) ([]string, error) {
- keys := make([]string, len(r.refs))
-
- i := 0
- for k := range r.refs {
- splitted := strings.Split(k, "/")
- keys[i] = splitted[len(splitted)-1]
- i++
- }
-
- return keys, nil
-}
-
func (r *mockRepoForTest) ListCommits(ref string) ([]util.Hash, error) {
var hashes []util.Hash
diff --git a/repository/repo.go b/repository/repo.go
index 0c573465..faea9f16 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -49,10 +49,6 @@ type Repo interface {
// ListRefs will return a list of Git ref matching the given refspec
ListRefs(refspec string) ([]string, error)
- // ListIds will return a list of Git ref matching the given refspec,
- // stripped to only the last part of the ref
- ListIds(refspec string) ([]string, error)
-
// RefExist will check if a reference exist in Git
RefExist(ref string) (bool, error)