Re: [git-users] get rid of old commits

2010-09-30 Thread Peter
You could try to run git config --global gc.auto 100 on your repo machine and work machine. If the number of loose objects exceeds the value of the gc.auto configuration variable, then all loose objects are combined into a single pack usinggit repack -d -l. On Thu, Sep 30, 2010 at 2:08 AM,

Re: [git-users] get rid of old commits

2010-09-30 Thread Peter
If you really want to remove old commit, you can just use git rebase -i http://book.git-scm.com/4_interactive_rebasing.html pick fc62e55 added file_size pick 9824bf4 fixed little thing pick 21d80a5 added number to log pick 76b9da6 added the apply command pick c264051 Revert added file_size - not