diff options
author | Javi Fontan <jfontan@gmail.com> | 2018-08-31 14:56:23 +0200 |
---|---|---|
committer | Javi Fontan <jfontan@gmail.com> | 2018-08-31 14:56:23 +0200 |
commit | cf626677508238893c7c88c3c786a02f17afcc4c (patch) | |
tree | c6a3e4d02a2e28c9df45b428ef96d7bb50248038 /plumbing/storer/storer.go | |
parent | 2a7c664b62dd0d87f7ab67b30b1952727788cffa (diff) | |
download | go-git-cf626677508238893c7c88c3c786a02f17afcc4c.tar.gz |
plumbing/storer: rename Static option to ExclusiveAccess
Signed-off-by: Javi Fontan <jfontan@gmail.com>
Diffstat (limited to 'plumbing/storer/storer.go')
-rw-r--r-- | plumbing/storer/storer.go | 5 |
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 } |