diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-02-12 15:44:10 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-02-12 15:44:10 -0400 |
commit | 3653b408156fa8d251bb233e29dd27da05d5db72 (patch) | |
tree | b82f6a0a46fa37f340eada83f9f3f838b1807492 /Types | |
parent | 329267cb2b11da52956a86d9caec5225251a5ac1 (diff) |
The ssh-options git config is now used by gcrypt, rsync, and ddar special remotes that use ssh as a transport.
Diffstat (limited to 'Types')
-rw-r--r-- | Types/GitConfig.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Types/GitConfig.hs b/Types/GitConfig.hs index ef8f2f2bd..c0043ec04 100644 --- a/Types/GitConfig.hs +++ b/Types/GitConfig.hs @@ -15,6 +15,7 @@ module Types.GitConfig ( import Common import qualified Git import qualified Git.Config +import qualified Git.Construct import Utility.DataUnits import Config.Cost import Types.Distribution @@ -193,3 +194,5 @@ notempty Nothing = Nothing notempty (Just "") = Nothing notempty (Just s) = Just s +instance Default RemoteGitConfig where + def = extractRemoteGitConfig Git.Construct.fromUnknown "dummy" |