Project Code
Git
This project uses Git code hosting. Access level depends on your project member role. If you want to contribute to this project please join or apply for membership.Please use your bettercodes login details...
How to connect to Git repositories on bettercodes.org
Based on this question http://bettercodes.org/answers/working-with-git and with Ronny's help here comes a short tutorial for connecting to your git-repository.
# 1. set this global value for git git config –global http.sslVerify false # 2. change into your git project directory cd /change/to/my/git/project/directory # 3. if your project isn't alredy initialized do # else continue with step 4. git init # 4. do the initial commit git commit -m "My initial commit message" # 5. add the repository url to your project # replace username an password with your bettercodes.org login information git remote add origin https://username:password@git.bettercodes.org/dlib3/ # 6. push the origin master git push origin master
That's it! If you want to clone your project try:
# clone your project # replace username and password with your bettercodes.org login information git clone https://username:password@git.bettercodes.org/dlib3/
For further informations, questions and discussions have a look at http://bettercodes.org/answers/working-with-git or send us feedback. Thanks!