aboutsummaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDonnie Berkholz <donnie@supernova.(none)>2006-05-21 19:26:57 -0700
committerDonnie Berkholz <donnie@supernova.(none)>2006-05-21 19:26:57 -0700
commit8773ae33e50ce79486d798a4f2e5ccabc7400992 (patch)
tree947f6619bf975deb425c1d3264b80d9949422bdf /eclass
parentFix typo for EGIT_PATCHES. (diff)
downloaddberkholz-8773ae33e50ce79486d798a4f2e5ccabc7400992.tar.gz
dberkholz-8773ae33e50ce79486d798a4f2e5ccabc7400992.tar.bz2
dberkholz-8773ae33e50ce79486d798a4f2e5ccabc7400992.zip
Default to false for prune and repack, because the whole point of git is to
trade speed for disk space and these operations take a while.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/git.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/git.eclass b/eclass/git.eclass
index 2b5fef8..1f411e6 100644
--- a/eclass/git.eclass
+++ b/eclass/git.eclass
@@ -128,7 +128,7 @@ EGIT_UPDATE_CMD="git fetch -f -n -u"
# long time with VERY big repositories. If this is your case set:
# EGIT_REPACK=false
#
-: ${EGIT_REPACK:=true}
+: ${EGIT_REPACK:=false}
## - EGIT_PRUNE:
#
@@ -136,7 +136,7 @@ EGIT_UPDATE_CMD="git fetch -f -n -u"
# rebases branches too often. If you don't want this to happen, set:
# EGIT_PRUNE=false
#
-: ${EGIT_PRUNE:=true}
+: ${EGIT_PRUNE:=false}
## -- git_fetch() ------------------------------------------------- #