Re: Purging old history

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ramkumar Ramachandra <artagnon@xxxxxxxxx> writes:
> John M. Dlugosz wrote:

> > Is there a simple way to delete old commits, say beyond a certain age,
> > before putting it on the server?  The ancient stuff is not relevant and
> > there are a lot of binaries.  Some users may have trouble with an extensive
> > download when syncing the first time.

It seems that you have XY problem.

One solution to extensive initial download is to create a git-bundle
of all commits up to e.g. some tag, and host it using HTTP, FTP
(which are resumable), or even P2P like BitTorrent.
 
Another solution would be to educate users to use shallow clones,
i.e. use "--depth" option to git-clone... and help git developers make
shallow clones better (there are some unncessary limitations in using
shallow clones).

> Yes, although your terminology is wrong: it's not about "deleting"
> commits; simply create a fresh root commit and rebase your work on top
> of it.  As an example, let's say you want to squash history from the
> 67afe1 (the old root) to 7ef42b on the master branch:
> 
> $ git checkout -b newroot 7ef42b
> $ git reset 67afe1
> $ git add .
> $ git commit --amend
> $ git checkout master
> $ git rebase --onto newroot 7ef42b

A simpler solution, one that would work also in presence of merges, is
to use grafts mechanism (see gitrepository-layout(5)) to cauterize
history, check using git-log or gitk that shortened history is
correct, make grafts permanent altering history with
git-filter-branch, and finally removing grafts.

P.S. Please read first all the warnings about rewriting history, and
about all its disadvantages for downstream.

-- 
Jakub Narebski

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]