[git-users] Re: Where to put a git repo?

2011-11-12 Thread Lars Pensjö
Just to double check, but are you sure speed is an important factor? When you git clone, you get a copy anyway, which is as fast as you can get it. It is only the push and pull that are affected, and you might not need them as frequently. There are other advantages of having the repository on

[git-users] Re: Where to put a git repo?

2011-11-12 Thread Thomas Ferris Nicolaisen
I take it you are talking about the central repository where developers will be pushing in changes, and then have them being built and tested by the build process. Note that the build box will need to have non-bare repository (with a working tree) to work, while the central repository will

[git-users] Re: Why does this happen (unexpected git behaviour)

2011-11-12 Thread tombert
Interesting - but I found this explanation in the manual: --merge When switching branches, if you have local modifications to one or more files that are different between the current branch and the branch to which you are switching, the command refuses to switch branches in order to preserve your

Re: [git-users] Re: Why does this happen (unexpected git behaviour)

2011-11-12 Thread Jack Nagel
On Sat, Nov 12, 2011 at 11:14 PM, tombert tomb...@live.at wrote: Interesting - but I found this explanation in the manual: --merge When switching branches, if you have local modifications to one or more files that are different between the current branch and the branch to which you are

Re: [git-users] Re: Why does this happen (unexpected git behaviour)

2011-11-12 Thread PJ Weisberg
On Sat, Nov 12, 2011 at 9:14 PM, tombert tomb...@live.at wrote: Interesting - but I found this explanation in the manual: --merge When switching branches, if you have local modifications to one or more files that are different between the current branch and the branch to which you are