diff options
author | Robie Basak <robie@justgohome.co.uk> | 2014-05-15 19:44:00 +0100 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-05-15 16:32:44 -0400 |
commit | 9914df2d424beb62a59bd3c82ca57b2d2f146e7c (patch) | |
tree | 920d16f734b11d52ce8b483195a64dc110c77097 /Types | |
parent | 1991541d1e4fdaa205bd8bdda31bb10ab4b49aef (diff) |
ddar special remote
Diffstat (limited to 'Types')
-rw-r--r-- | Types/GitConfig.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Types/GitConfig.hs b/Types/GitConfig.hs index b49f3d762..71f06ff45 100644 --- a/Types/GitConfig.hs +++ b/Types/GitConfig.hs @@ -131,6 +131,7 @@ data RemoteGitConfig = RemoteGitConfig , remoteAnnexBupSplitOptions :: [String] , remoteAnnexDirectory :: Maybe FilePath , remoteAnnexGCrypt :: Maybe String + , remoteAnnexDdarRepo :: Maybe String , remoteAnnexHookType :: Maybe String , remoteAnnexExternalType :: Maybe String {- A regular git remote's git repository config. -} @@ -162,6 +163,7 @@ extractRemoteGitConfig r remotename = RemoteGitConfig , remoteAnnexBupSplitOptions = getoptions "bup-split-options" , remoteAnnexDirectory = notempty $ getmaybe "directory" , remoteAnnexGCrypt = notempty $ getmaybe "gcrypt" + , remoteAnnexDdarRepo = getmaybe "ddarrepo" , remoteAnnexHookType = notempty $ getmaybe "hooktype" , remoteAnnexExternalType = notempty $ getmaybe "externaltype" , remoteGitConfig = Nothing |