* Best way to optimize a git repository?
@ 2008-05-03 0:34 skillzero
2008-05-03 10:02 ` Stephen R. van den Berg
0 siblings, 1 reply; 2+ messages in thread
From: skillzero @ 2008-05-03 0:34 UTC (permalink / raw)
To: git
I want to periodically optimize my repositories even if it takes a
long time to run the command. Should I do 'git gc --aggressive', 'git
repack -a -d', 'git prune', or some combination? The documentation
implies that things like git gc will use git repack, but I'm sort of
looking for the definitive answer of what I should run to fully
optimize my repositories. These are relatively new repositories, all
created with git 1.5.5.1.
I also read somewhere (but can't find now) that some of these commands
shouldn't be run while other people might be accessing the repository.
I want to run these commands on a server that multiple people clone
and pull from and push to. Is that safe to do? I'm okay if clone,
pull, or push fail during this time (although I'd prefer if they
didn't fail), I just don't want to corrupt the repository.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Best way to optimize a git repository?
2008-05-03 0:34 Best way to optimize a git repository? skillzero
@ 2008-05-03 10:02 ` Stephen R. van den Berg
0 siblings, 0 replies; 2+ messages in thread
From: Stephen R. van den Berg @ 2008-05-03 10:02 UTC (permalink / raw)
To: skillzero; +Cc: git
skillzero@gmail.com wrote:
>I want to periodically optimize my repositories even if it takes a
>long time to run the command. Should I do 'git gc --aggressive', 'git
>I also read somewhere (but can't find now) that some of these commands
>shouldn't be run while other people might be accessing the repository.
Caveat emptor, indeed.
I have in my /etc/gitconfig the following:
[repack]
UseDeltaBaseOffset = true
[pack]
compression = 9
[alias]
packall = !rm -rf .git/ORIG_HEAD .git/FETCH_HEAD .git/index .git/logs .git/info/refs .git/objects/pack/pack-*.keep .git/refs/original .git/refs/patches .git/patches && git prune --expire now && git repack -a -d --window=200 && git gc
A subsequent "git packall" does the trick, but this is best done on an
otherwise idle repository.
--
Sincerely, srb@cuci.nl
Stephen R. van den Berg.
"What do I do when I see someone *extremely gorgeous*?
I stare, I smile, and when I get tired... I put the mirror down."
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-05-03 10:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-03 0:34 Best way to optimize a git repository? skillzero
2008-05-03 10:02 ` Stephen R. van den Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).