Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. 1. git remote -v (List all the remote repositories)
  2.  
  3. 2. git fetch upstream (Pull the change from upstream repository)
  4.  
  5. 3. git checkout master (Checkout master branch on your local)
  6.  
  7. 4. git merge upstream/master (Merge the change from upstream/master to local master branch)
  8.  
  9. 5. git push (To push your local change to your fork github repository)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement