If you have access to SSH for each other's machines (which may be a little easier to configure on some networks than git: // protocol access), then this will be simple:
git pull ssh:// username@host :/path/to/repository/.git
If direct access via any protocol is not possible (for example, if you are behind a router with NAT), you can always send patches to each other.
But Git has another way of doing this, git-bundle , which allows you to send a file (via email or, nevertheless, you send files) to your employees, which can be clicked and pulled into and out of, like a repository. Pro Git has blogging tutorial at this .
Ben james
source share