From: "Shawn O. Pearce" <spearce@spearce.org>
To: Russ Dill <russ.dill@gmail.com>
Cc: Haakon Riiser <haakon.riiser@fys.uio.no>, git@vger.kernel.org
Subject: Re: Cleaning the .git directory with gc
Date: Wed, 23 Apr 2008 20:50:13 -0400 [thread overview]
Message-ID: <20080424005013.GP29771@spearce.org> (raw)
In-Reply-To: <f9d2a5e10804231709v1d7e426fwf68b3d316a15081a@mail.gmail.com>
Russ Dill <russ.dill@gmail.com> wrote:
> On Wed, Apr 23, 2008 at 4:13 PM, Haakon Riiser <haakon.riiser@fys.uio.no> wrote:
> > I've recently started using git, and while experimenting with
> > git commit --amend, I noticed that git gc does not do what I
> > expected. Example:
>
> Thats a lot of work without first reading the man page:
>
> --prune
> Usually git-gc packs refs, expires old reflog entries, packs loose
> objects, and removes old rerere records. Removal of unreferenced
> loose objects is an unsafe operation while other git operations are
> in progress, so it is not done by default. Pass this option if you
> want it, and only when you know nobody else is creating new objects
> in the repository at the same time (e.g. never use this option in a
> cron script).
But even with `git gc --prune` the old commit object will still
be in your repository.
Why? Both HEAD and your branch's reflog have a reference to the
old commit. And those will remain in there for 90 days by default,
so that you could always go back and get that if you _really_
had to recover it. Take a look with `git reflog show HEAD`
or `git log -g` and you'll see what I mean.
A commit is peanuts when it comes to disk space. Don't worry
about it. After a lot of amends and such you will be carrying
around only a few extra MBs. In return for those few extra MBs
you are always able to recovery anything, up to 3 months back.
If you _really_ need to whack all of that away, make a clone
and then discard the old one, e.g.:
git clone file://`pwd`/old_proj new_proj
Note you need to use the file:// URI syntax to prevent Git from
just hardlinking everything. It takes a little longer, but the
resulting new_proj will be cruft free.
--
Shawn.
next prev parent reply other threads:[~2008-04-24 0:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-23 23:13 Cleaning the .git directory with gc Haakon Riiser
2008-04-24 0:09 ` Russ Dill
2008-04-24 0:32 ` David Tweed
2008-04-24 0:57 ` Shawn O. Pearce
2008-04-24 0:50 ` Shawn O. Pearce [this message]
2008-04-24 21:14 ` Haakon Riiser
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080424005013.GP29771@spearce.org \
--to=spearce@spearce.org \
--cc=git@vger.kernel.org \
--cc=haakon.riiser@fys.uio.no \
--cc=russ.dill@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).