Added git cheats

This commit is contained in:
Özgür Özdemircili 2013-08-27 10:56:53 +02:00
parent dcfc6e60be
commit 63bd132a9b
1 changed files with 9 additions and 0 deletions

View File

@ -16,3 +16,12 @@ git push origin master
# To push to a specified repository:
git push git@github.com:username/project.git
# To sync a fork with the master repo:
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 checkout master (Checpkout local master branch)
git merge upstream/master (Merge remote into local repo)