Created
August 4, 2010 04:24
-
-
Save tathamoddie/507636 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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