grim/govcs

remove the Bookmark method from git
draft
2017-12-27, Gary Kramlich
e3e0b8f91448
Parents a8955008648f
Children 8f7139d219b9
remove the Bookmark method from git
  • +0 -5
    git/git.go
  • --- a/git/git.go Wed Dec 27 21:18:55 2017 -0600
    +++ b/git/git.go Wed Dec 27 22:43:06 2017 -0600
    @@ -75,11 +75,6 @@
    return g.runCmd([]string{"rev-parse", "--abbrev-ref", "HEAD"})
    }
    -// git doesn't support bookmarks
    -func (g *Git) Bookmark() string {
    - return ""
    -}
    -
    // Config will look up the given key and return a string slice of the values.
    func (g *Git) Config(key string) []string {
    output := g.runCmd([]string{"config", key})