Adding wget and curl cheats and updating git cheat

This commit is contained in:
ashernor
2013-10-11 18:31:40 +02:00
parent d9bce2f3c4
commit 6c9ac348b5
3 changed files with 38 additions and 0 deletions

View File

@ -25,6 +25,7 @@ git remote add upstream git@github.com:name/repo.git # Set a new repo
git remote -v # Confirm new remote repo
git fetch upstream # Get branches
git branch -va # List local - remote branches
git branch -D branch_name # Delete the branch branch_name
git checkout master # Checkout local master branch
git merge upstream/master # Merge remote into local repo
git show 83fb499 # Show what a commit did.