diff options
author | Javi Fontan <jfontan@gmail.com> | 2018-09-03 19:40:22 +0200 |
---|---|---|
committer | Javi Fontan <jfontan@gmail.com> | 2018-09-03 19:40:22 +0200 |
commit | 874f669becc25489081306bbbcbbc27b970f6295 (patch) | |
tree | 82a106646428b4656f4483afd7b38696eede2cbf /plumbing/storer/storer.go | |
parent | 95acbf6c3958b7540a8549aa049051325fcecd8b (diff) | |
download | go-git-874f669becc25489081306bbbcbbc27b970f6295.tar.gz |
storage/filesystem: move Options to filesytem and dotgit
Signed-off-by: Javi Fontan <jfontan@gmail.com>
Diffstat (limited to 'plumbing/storer/storer.go')
-rw-r--r-- | plumbing/storer/storer.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go index 9bbb44f..c7bc65a 100644 --- a/plumbing/storer/storer.go +++ b/plumbing/storer/storer.go @@ -13,10 +13,3 @@ type Initializer interface { // any. Init() error } - -// Options holds configuration for the storage. -type Options struct { - // ExclusiveAccess means that the filesystem is not modified externally - // while the repo is open. - ExclusiveAccess bool -} |