ignore gcrypt remotes w/o an annex-uuid
This commit is contained in:
parent
e05b0f4906
commit
00fb5705ff
3 changed files with 17 additions and 8 deletions
|
@ -25,6 +25,9 @@ instance Show ConfigKey where
|
|||
getConfig :: ConfigKey -> String -> Annex String
|
||||
getConfig (ConfigKey key) def = fromRepo $ Git.Config.get key def
|
||||
|
||||
getConfigMaybe :: ConfigKey -> Annex (Maybe String)
|
||||
getConfigMaybe (ConfigKey key) = fromRepo $ Git.Config.getMaybe key
|
||||
|
||||
{- Changes a git config setting in both internal state and .git/config -}
|
||||
setConfig :: ConfigKey -> String -> Annex ()
|
||||
setConfig (ConfigKey key) value = do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue