Skip to content

Instantly share code, notes, and snippets.

@inlikealion
Created April 26, 2011 22:21
Show Gist options
  • Save inlikealion/943330 to your computer and use it in GitHub Desktop.
Save inlikealion/943330 to your computer and use it in GitHub Desktop.
Checklist of commands for Mercurial merge branches & push to remote repo
hg in/pull // Check for updates from other devs
hg update <branch-name-to-merge-to> // Likely 'default' branch
hg merge <my-dev-branch> // Where changes are coming from
hg commit
hg in/pull
hg push
hg update <my-dev-branch> // Go back to my branch to keep working
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment