I’ve been ‘playing’ with git on my own machine for 6 months now, and really loving it.
However, I’m finding it difficult to really grok how I would use it in a team/enterprisey environment. (I’m wondering whether Eric Sink is right).
I started out trying to install a git server on windows, but that didn’t go too well.
So I wondered about just setting up a second repository on my own machine and starting to get a hang on pulling/pushing to that.
Do you know of any good articles for starting ‘simple’ like that, or do you have any tips on grokking the next level?
If:
You simply can:
git clone --bare /path/to/your/first/repocd /path/to/your/first/repogit remote add bare_repo /path/to/bare/repgit push bare_repogit pull bare_repoIn other words, the file protocole is supported as a legitimate URL for remote repos.
See
git fetch, section URL: