ReleaseEngineering/PuppetAgain/HowTo/Push changes to Production

From MozillaWiki
Jump to: navigation, search


When a change has been reviewed and granted, hg push will push the changes to the default branch of the puppet repository. To then move those changes to the production branch, so they will be deployed, use these commands:

hg up production
hg merge default
hg commit -m 'Merge default -> production'
hg push
hg up default