Monthly Archives: June 2013

GIT create repositories on Linux Servers

Put an existing repo on a server (personal use): 1. Make special clone: git clone –bare /LOCAL/PATH/project.git 2. Put clone on server: scp -r project.git USER@example.com:/REMOTE/PATH/ 3. Test your setup: git clone ssh://USER@example.com/REMOTE/PATH/project.git Shared repo from scratch To share any … Continue reading

Posted in git | Tagged , , , , , , | Leave a comment