Git development
 help / color / mirror / Atom feed
From: "Björn Steinbrink" <B.Steinbrink@gmx.de>
To: Geoff Russell <geoffrey.russell@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: purging unwanted history
Date: Mon, 17 Nov 2008 03:27:14 +0100	[thread overview]
Message-ID: <20081117022714.GC3911@atjola.homenet> (raw)
In-Reply-To: <20081117022412.GB3911@atjola.homenet>

On 2008.11.17 03:24:12 +0100, Björn Steinbrink wrote:
> On 2008.11.17 10:56:23 +1030, Geoff Russell wrote:
> > I have a repository with 5 years worth of history, I only want to keep
> > 1 year, so I want to purge the first 4 years. As it happens, the
> > repository only has a single branch which should simplify the problem.
> 
> Use filter-branch to drop the parents on the first commit you want to
> keep, and then drop the old cruft.
> 
> Let's say $drop is the hash of the latest commit you want to drop. To
> keep things sane and simple, make sure the first commit you want to
> keep, ie. the child of $drop, is not a merge commit. Then you can use:
> 
> git filter-branch --parent-filter "sed -e 's/-p $drop//'" \
> 	--tag-name-filter cat -- \
> 	--all ^$drop
> 
> The above rewrites the parents of all commits that come "after" $drop.
> 
> Check the results with gitk.
> 
> 
> Then, to clean out all the old cruft.
> 
> First, the backup references from filter-branch:
> 
> git for-each-ref --format='%(refname)' refs/original | \
> 	while read ref
> 	do
> 		git update-ref -d "$ref"
> 	done
> 
> Then clean your reflogs:
> git reflog expire --expire=0 --all
> 
> And finally, repack and drop all the old unreachable objects:
> git repack -ad
> git prune # For objects that repack -ad might have left around
> 
> At that point, everything leading up to and including $drop should be
> gone.

Hm, on second thought, if you have tags referencing some of the old
history, they'll still be around, I think. Just delete those before you
start the rewriting.

And of course do the above with a copy of your repo. Just in case.

Björn

  reply	other threads:[~2008-11-17  2:28 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-17  0:26 purging unwanted history Geoff Russell
2008-11-17  2:24 ` Björn Steinbrink
2008-11-17  2:27   ` Björn Steinbrink [this message]
2008-11-17  3:03     ` Geoff Russell
2008-11-18 14:28 ` Marcel M. Cary

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=20081117022714.GC3911@atjola.homenet \
    --to=b.steinbrink@gmx.de \
    --cc=geoffrey.russell@gmail.com \
    --cc=git@vger.kernel.org \
    /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