-
Notifications
You must be signed in to change notification settings - Fork 2
Tagging a pull request
Zhian N. Kamvar edited this page Dec 26, 2016
·
1 revision
All changes made to this repository should be in the form of pull requests. The maintainers of the repository will tag pull requests with a new version. Each new tag will trigger a build from the docker container, ensuring that the new changes actually work.
Note, this assumes you have made your changes in a new branch and are ready to test.
For maintainers, there are two potential avenues for tagging:
a. On github with a release
b. On your machine with git tag
Go to the new release page for this repository.
- Add a tag that doesn't currently exist in the form vX.Y.Z using the principles of semantic versioning.
- Set the target branch to your new branch.
- Create a release title that describes what you did
- Click on "Publish Release" at the bottom
- Make sure everything is up to date with
git pull
. - Check out your branch
git checkout my-new-branch
- Make sure everything is committed and make a tag with
git tag -a v0.2.10 -m "add something"
git push
git push --tags