aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer/storer.go
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/storer/storer.go')
-rw-r--r--plumbing/storer/storer.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go
index 1b7d226..9bbb44f 100644
--- a/plumbing/storer/storer.go
+++ b/plumbing/storer/storer.go
@@ -16,6 +16,7 @@ type Initializer interface {
// Options holds configuration for the storage.
type Options struct {
- // Static means that the filesystem is not modified while the repo is open.
- Static bool
+ // ExclusiveAccess means that the filesystem is not modified externally
+ // while the repo is open.
+ ExclusiveAccess bool
}