mahiki / sde-path

learning how to be good enough for my current role
2 stars 0 forks source link

git tutorial - codeacademy #44

Closed mahiki closed 8 years ago

mahiki commented 8 years ago

Go through this 2 hour webapp basic tutorial, to solidify your knowledge.

mahiki commented 8 years ago

done

here were topics covered, complete notes are in evernote.

git status
git add <file>
git commit -m 'message here'
git diff <file>
git log
git show HEAD
git checkout HEAD <file>
git reset HEAD <file>
git reset <sha>
git branch
git branch -d
git checkout <branch>
git merge <branch>
git clone <remote> <local repo>
git remote -v
git fetch
git merge origin/master
git push origin <branch>