Guest User

Untitled

a guest
Jan 22nd, 2018
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Clone your fork.
  2. ```
  3. git clone git@github.com:YOUR_USERNAME/FORKED_REPO.git
  4. ```
  5.  
  6. Add the remote upstream to git
  7. ```
  8. git remote add upstream git://github.com/ORIGIN_USERNAME/ORIGIN_REPO.git
  9. ```
  10.  
  11. Fetch changes from upstream
  12. ```
  13. git fetch upstream
  14. ```
  15.  
  16. Pull changes from one of the upstream's branches
  17. ```
  18. git pull upstream BRANCH_NAME
  19. ```
Add Comment
Please, Sign In to add comment