Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

Git Help

fclaude edited this page May 13, 2011 · 10 revisions

Here are some resources to help you with Git. Of course, you don't have to read all of this :) I have put a ★ next to the ones I think should be understood.

##Quick Example##

An example on how to add code to develop (this is where we will upload, when it's ready it will move to master)

Switch to develop:

git checkout develop

You can update the content:

git pull origin develop

After working on it:

git add [new files]
git commit
git push origin develop

##Introductions, to help you get started##

##Advanced Materials for the Inquisitive##

##References##

##Longer resources##

  • Pro Git free eBook by Scott Chacon (a GitHub developer)
Clone this wiki locally