aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/index/index.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-05-21 12:54:29 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2017-05-21 12:54:29 +0200
commit52add52ea3f92a2a092e6879b6d75fb1279430d5 (patch)
treed53451935a81f90f4da8727a6af1d61952712ae8 /plumbing/format/index/index.go
parent0f2abe7da065ed25085ea265db20e77609cefdbc (diff)
downloadgo-git-52add52ea3f92a2a092e6879b6d75fb1279430d5.tar.gz
worktree: Remove and Move methods
Diffstat (limited to 'plumbing/format/index/index.go')
-rw-r--r--plumbing/format/index/index.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/plumbing/format/index/index.go b/plumbing/format/index/index.go
index 782e3d1..9de4230 100644
--- a/plumbing/format/index/index.go
+++ b/plumbing/format/index/index.go
@@ -62,6 +62,18 @@ func (i *Index) Entry(path string) (*Entry, error) {
return nil, ErrEntryNotFound
}
+// Remove remove the entry that match the give path and returns deleted entry.
+func (i *Index) Remove(path string) (*Entry, error) {
+ for index, e := range i.Entries {
+ if e.Name == path {
+ i.Entries = append(i.Entries[:index], i.Entries[index+1:]...)
+ return e, nil
+ }
+ }
+
+ return nil, ErrEntryNotFound
+}
+
// String is equivalent to `git ls-files --stage --debug`
func (i *Index) String() string {
buf := bytes.NewBuffer(nil)