Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. Check out, review, and merge locally
  2.  
  3. Step 1. Fetch and check out the branch for this merge request
  4.  
  5. git fetch origin
  6. git checkout -b username/models origin/username/models
  7.  
  8. Step 2. Review the changes locally
  9.  
  10. Step 3. Merge the branch and fix any conflicts that come up
  11.  
  12. git checkout master
  13. git merge --no-ff username/models
  14.  
  15. Step 4. Push the result of the merge to GitLab
  16.  
  17. git push origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement