Can I create my own remote server instead of using Git Hub?
i.e Can I make a remote server on LAN where 3 computers are sharing a drive on a network to do the collaborative work using Gitbash?
Can I create my own remote server instead of using Git Hub?
i.e Can I make a remote server on LAN where 3 computers are sharing a drive on a network to do the collaborative work using Gitbash?
You can set up a remote repository and make it accessible through any of the protocols it supports. The AAA would be handled by the transport.
Yes, you do. Actually you need a SSH-service and git would perfectly work over SSH. Since you're on Windows, see Setup a Git server with msysgit on Windows
There are several ways to do this
mkdir -p RepoName && git init RepoName --bare
git daemon --base-path=$PWD/RepoName
Add your remote:
git remote add origin git://server.url.or.ip/RepoName
or just clone it:
git clone git://server.url.or.ip/RepoName