Skip to content

Maintaining

Thom Bruce edited this page Apr 16, 2020 · 6 revisions

Merging a PR

Step 1: From your project repository, bring in the changes and test.

git fetch origin
git checkout -b [branch name] origin/[branch name]
git merge master

Step 2: Merge the changes into master.

git checkout master
git merge --no-ff [branch name]

Step 3: Bump the version in package.json based on semver.

- "version": "0.1.23",
+ "version": "0.1.24",

Step 4: Tag the version and push to GitHub.

git add package.json && git commit -m "v0.1.24"
git tag v0.1.24
git push && git push --tags
Clone this wiki locally