ignore gcrypt remotes w/o an annex-uuid

This commit is contained in:
Joey Hess 2013-09-08 15:19:14 -04:00
parent e05b0f4906
commit 00fb5705ff
3 changed files with 17 additions and 8 deletions

View file

@ -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