March 23, 2014 1 min read
Setup a new GIT repository
Here is a quick reminder of how to setup a new git repository on your git server and check it out on your client machine. On The Server cd /opt/git mkdir newproject.git cd newproject.git git --bare init On the Client...
Programming Guides