From: Robert Haas on 20 Jul 2010 13:04 Tom and, I believe, also Andrew have expressed some concerns about the space that will be taken up by having multiple copies of the git repository on their systems. While most users can probably get by with a single repository, committers will likely need one for each back-branch that they work with, and we have quite a few of those. After playing around with this a bit, I've come to the conclusion that there are a couple of possible options but they've all got some drawbacks. 1. Clone the origin. Then, clone the clone n times locally. This uses hard links, so it saves disk space. But, every time you want to pull, you first have to pull to the "main" clone, and then to each of the "slave" clones. And same thing when you want to push. 2. Clone the origin n times. Use more disk space. Live with it. :-) 3. Clone the origin once. Apply patches to multiple branches by switching branches. Playing around with it, this is probably a tolerable way to work when you're only going back one or two branches but it's certainly a big nuisance when you're going back 5-7 branches. 4. Clone the origin. Use that to get at the master branch. Then clone that clone n-1 times, one for each back-branch. This makes it a bit easier to push and pull when you're only dealing with the master branch, but you still have the double push/double pull problem for all the other branches. 5. Use git clone --shared or git clone --references or git-new-workdir. While I once thought this was the solution, I can't take very seriously any solution that has a warning in the manual that says, essentially, git gc may corrupt your repository if you do this. I'm not really sure which of these I'm going to do yet, and I'm not sure what to recommend to others, either. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise Postgres Company -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
|
Pages: 1 Prev: [COMMITTERS] pgsql: pgindent run for 9.0, second run Next: managing git disk space usage |