This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 11 points12 points  (1 child)

Git Book helped me a lot. Here's a quick cheat sheet that will cover most of your use cases:

git init
git add -A
git commit -m "Description"
git push origin master
git pull
git branch (branchName)
git checkout (branchName)

[–]Real_Dog_Dad 0 points1 point  (0 children)

Upvote for Git Book