Slide 59
Slide 59 text
To Summarize:
git config --global user.name
git config --global user.email
git init
git remote add origin
git clone
git status
git add
git commit -m “...”
git push
git checkout -b branchname
git branch -d branchname
git push origin branchname
git branch
git fetch origin
git merge branchname
git pull
Forking
Compare and Pull Request
git remote add upstream path/to/rep
Git pull upstream master
git stash
git stash -u
git stash apply
git stash drop
git stash pop
git stash branch branchname
git reset HEAD~2
git reset --hard HEAD~2
git reset --hard 234jk3
git rm list_of_passwords
git reset list_of_passwords
git commit --amend -m “...”
git add forgotten_file
git diff --stat --cached origin/master