init: Added --no-autoenable option
Someone may disagree with what repositories are set to autoenable and it's good to have local overrides. See https://github.com/datalad/datalad/issues/6634 Sponsored-by: Dartmouth College's Datalad project
This commit is contained in:
parent
cac752d720
commit
0d50c90794
3 changed files with 18 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
git-annex (10.20220526) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* init: Added --no-autoenable option.
|
||||||
|
|
||||||
|
-- Joey Hess <id@joeyh.name> Wed, 01 Jun 2022 13:23:05 -0400
|
||||||
|
|
||||||
git-annex (10.20220525) upstream; urgency=medium
|
git-annex (10.20220525) upstream; urgency=medium
|
||||||
|
|
||||||
* Special remotes with importtree=yes or exporttree=yes are once again
|
* Special remotes with importtree=yes or exporttree=yes are once again
|
||||||
|
|
|
@ -25,6 +25,7 @@ data InitOptions = InitOptions
|
||||||
{ initDesc :: String
|
{ initDesc :: String
|
||||||
, initVersion :: Maybe RepoVersion
|
, initVersion :: Maybe RepoVersion
|
||||||
, autoEnableOnly :: Bool
|
, autoEnableOnly :: Bool
|
||||||
|
, noAutoEnable :: Bool
|
||||||
}
|
}
|
||||||
|
|
||||||
optParser :: CmdParamsDesc -> Parser InitOptions
|
optParser :: CmdParamsDesc -> Parser InitOptions
|
||||||
|
@ -38,6 +39,10 @@ optParser desc = InitOptions
|
||||||
( long "autoenable"
|
( long "autoenable"
|
||||||
<> help "only enable special remotes configured with autoenable=true"
|
<> help "only enable special remotes configured with autoenable=true"
|
||||||
)
|
)
|
||||||
|
<*> switch
|
||||||
|
( long "no-autoenable"
|
||||||
|
<> help "do not enable special remotes configured with autoenable=true"
|
||||||
|
)
|
||||||
|
|
||||||
parseRepoVersion :: MonadFail m => String -> m RepoVersion
|
parseRepoVersion :: MonadFail m => String -> m RepoVersion
|
||||||
parseRepoVersion s = case RepoVersion <$> readish s of
|
parseRepoVersion s = case RepoVersion <$> readish s of
|
||||||
|
@ -73,7 +78,8 @@ perform os = do
|
||||||
initialize False
|
initialize False
|
||||||
(if null (initDesc os) then Nothing else Just (initDesc os))
|
(if null (initDesc os) then Nothing else Just (initDesc os))
|
||||||
(initVersion os)
|
(initVersion os)
|
||||||
Annex.SpecialRemote.autoEnable
|
unless (noAutoEnable os)
|
||||||
|
Annex.SpecialRemote.autoEnable
|
||||||
next $ return True
|
next $ return True
|
||||||
|
|
||||||
performAutoEnableOnly :: CommandPerform
|
performAutoEnableOnly :: CommandPerform
|
||||||
|
|
|
@ -48,11 +48,15 @@ to the user who tries to run git-annex init.
|
||||||
When the version given is not supported, but can be automatically
|
When the version given is not supported, but can be automatically
|
||||||
upgraded to a newer version, it will use the newer version instead.
|
upgraded to a newer version, it will use the newer version instead.
|
||||||
|
|
||||||
* --autoenable
|
* `--autoenable`
|
||||||
|
|
||||||
Only enable any special remotes that were configured with
|
Only enable any special remotes that were configured with
|
||||||
autoenable=true, do not otherwise initialize anything.
|
autoenable=true, do not otherwise initialize anything.
|
||||||
|
|
||||||
|
* `--no-autoenable`
|
||||||
|
|
||||||
|
Do not enable special remotes that were configured with autoenable=true.
|
||||||
|
|
||||||
* Also the [[git-annex-common-options]](1) can be used.
|
* Also the [[git-annex-common-options]](1) can be used.
|
||||||
|
|
||||||
# SEE ALSO
|
# SEE ALSO
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue