Github
Github. Download & install git. http:// git-scm.com/downloads Git bash Git GUI. Register on github. https://github.com /. Create new repository. Sign in to your github account On the home page, click on ‘New Repository’ Repository name Create repository.
Github
E N D
Presentation Transcript
Download & install git • http://git-scm.com/downloads • Git bash • Git GUI
Register on github • https://github.com/
Create new repository • Sign in to your github account • On the home page, click on ‘New Repository’ • Repository name • Create repository
Adding files to repository • cd to location of project • gitinit • gitconfig user.name “username” • gitconfiguser.email “email” • git add • git commit –m “message” • git remote add origin https://github.com/username/helloworld.git • git push origin master
Forking repositories • Fork spoon-knife repository • https://github.com/octocat/Spoon-Knife • git clone https://github.com/kvaltierra/Spoon-Knife.git • Make changes • Same process as before • Don’t need to do git remote add origin