Merge pull request #5750 from rolandwalker/release_process_updates

minor amendments to release process/changelog
This commit is contained in:
Roland Walker
2014-08-12 16:09:43 -04:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ end
def footer
@footer ||= Set.new
@footer.to_a
@footer.to_a.sort
end
def add_to_footer(line)
+2 -2
View File
@@ -97,13 +97,13 @@ written down than floating in a brain somewhere.
13. Push that commit and the tag:
```bash
$ git push --follow-tags
$ git push && git push --follow-tags
```
Or, depending on your git configuration, you might need to append
`<repository> <refspec>` to the above command, for example:
```bash
$ git push --follow-tags upstream master
$ git push upstream master && git push --follow-tags upstream master
```
14. Unset the shell variable `$NEW_RELEASE_TAG`; you don't need it anymore.