Guest User

Untitled

a guest
Jan 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # switch to the named branch
  2. $ hg update -C my_branch
  3.  
  4. # write some code and commit the changes
  5. $ hg commit
  6.  
  7. # switch to default
  8. $ hg update -C default
  9.  
  10. # merge the revised code from the branch
  11. $ hg merge -r my_branch
  12.  
  13. # view the updated stuff
  14. $ hg st
  15. M app/controllers/blergs_controller.rb
  16. M app/models/blerg.rb
Add Comment
Please, Sign In to add comment