Skip to content

Instantly share code, notes, and snippets.

@tathamoddie
Created August 4, 2010 04:24
Show Gist options
  • Save tathamoddie/507636 to your computer and use it in GitHub Desktop.
Save tathamoddie/507636 to your computer and use it in GitHub Desktop.
one-time step:
notepad %userprofile%\.hgrc
type in:
[ui]
username = Steve Godbold <[email protected]>
then:
hg update -r 934b35eec3f7
hg branch hotfix-message-callbacks-issue6197
hg com -m "Created branch for issue 6197."
hg update hotfix-message-callbacks-issue6197
<fix the bug>
hg status
hg com -m "Fixed issue 6197."
WebFormsMvp\Build-Release.ps1 0.9.7.5
hg status
<check that only the SolutionInfo.cs has changed>
hg com -m "Cutting release 0.9.7.5."
hg tag v0.9.7.5 -m "Tagging 0.9.7.5."
hg update default
hg merge hotfix-message-callbacks-issue6197
hg com -m "Merging back into main line."
hg outgoing default
<see what changesets you have that we don't>
hg bundle d:\temp\6197.bundle
<email 6197.bundle> to me
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment