aboutsummaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-11 00:22:50 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-11 00:22:50 -0400
commit779ebba96153e712803c8284a0502d7080c609bf (patch)
tree50e975d07210b5d66f7b5ac21ef5a57bc38642de /Annex.hs
parent2bd3eea0318fe52452fa7077fe94ae3f224ae9c5 (diff)
adjust merge config
*.log will merge, but foo.$backend files will not
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex.hs b/Annex.hs
index 882ed2761..e3956cbf2 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -89,7 +89,7 @@ unannexFile state file = do
gitPrep :: GitRepo -> IO ()
gitPrep repo = do
-- configure git to use union merge driver on state files
- let attrLine = stateLoc ++ "/* merge=union"
+ let attrLine = stateLoc ++ "/*.log merge=union"
attributes <- gitAttributes repo
exists <- doesFileExist attributes
if (not exists)