mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 14:01:36 +01:00
Added git cheats
This commit is contained in:
parent
dcfc6e60be
commit
63bd132a9b
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user