<<<<<<< HEAD
Many Hello World Examples
=======
Hello World Lang Examples
>>>>>>> commit_message
git clone git://github.com/username/example.git
// Add a single file
git add filename.html
// Recursively adds all files
git add .
// Recursively adds all files (recurse into subdirectories)
git add *
// Gives you context and hints about the status
git status
// Gives you a short context of the status
git status -s
// Add a descriptive message to your commit
git commit -m "Place commit message here"
// Removes file from staging area and working directory
git rm filename.html
// Lists all local branches
git branch
// Lists all remote branches
git branch -r
// Creates a new branch called "example" but will not check out the branch immediately
git branch example
// See the last commit on each branch
git branch -v
// Deletes branch called "example" locally
git branch -d example
// Deletes branch called "example" from remote
git push origin :example
// Check out the branch called "example"
git checkout example
// Creates and immediately switches to the branch called "example"
git checkout -b example
git merge
// Git merge the branch example in current branch
git merge example
git log
git fetch origin
// Pulls latest version of the branch "example"
git pull origin example
// Pushes your changes to the branch "example"
git push origin example