Re: Selectively commit/publish files to GIT

2013-11-08 Thread Magnus Bäck
On Friday, November 08, 2013 at 05:52 EST, Thomas Manson dev.mansontho...@gmail.com wrote: [...] How can I search git history for big files and remove them, or mark them to be not published ? I've tryed this solution found on the link in the error: git filter-branch --force

Re: Selectively commit/publish files to GIT

2013-11-08 Thread Thomas Manson
Hi Magnus, thanks for pointing that out. I must have overlooked the webpage, when I saw that I thought it was some kind of alias that designated files greater than a specific files (server side configurated as the 100MB limit) I'll try again ;) Thomas. On Fri, Nov 8, 2013 at 3:13 PM, Magnus

Re: Selectively commit/publish files to GIT

2013-11-08 Thread Thomas Manson
Thanks Magnus, it did solve my issue. I've noticed by the way that i've accidentally commited the whole .bzr directory (that hold all my commit in Bazaar style). I've deleted this folder as well using -r git filter-branch --force --index-filter 'git rm -r --cached --ignore-unmatch .bzr'

Re: Selectively commit/publish files to GIT

2013-11-08 Thread Keshav Kini
Thomas Manson dev.mansontho...@gmail.com writes: The problem is that in Bazaar, I've commited some big files (63MB 173MB), but this files are no longer in my project, only in the revisions files of Bazaar and now Git. I don't need this files to be pushed on Github. How can I search