summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-05-18 19:34:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-05-18 19:34:46 -0400
commitcd8354187273ee07c8953bea72df2d60b8b50c5d (patch)
treee8b2306baa392c1cb0f399a413d3fd0ce85872de /Annex.hs
parentdd44e53c0ca3e5eec78f03a3a222b4922d6d097c (diff)
--backend now overrides any backend configured in .gitattributes files.
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Annex.hs b/Annex.hs
index b2257281f..2148dd625 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -38,7 +38,7 @@ data AnnexState = AnnexState
, quiet :: Bool
, force :: Bool
, fast :: Bool
- , defaultbackend :: Maybe String
+ , forcebackend :: Maybe String
, defaultkey :: Maybe String
, toremote :: Maybe String
, fromremote :: Maybe String
@@ -56,7 +56,7 @@ newState gitrepo allbackends = AnnexState
, quiet = False
, force = False
, fast = False
- , defaultbackend = Nothing
+ , forcebackend = Nothing
, defaultkey = Nothing
, toremote = Nothing
, fromremote = Nothing