summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Rose <hello@samwho.dev>2020-01-31 18:52:20 +0000
committerGitHub <noreply@github.com>2020-01-31 13:52:20 -0500
commit8555143533a59dccba992b87573501d3bc14a2ed (patch)
treea07af81dd05b77fcda37d46ca7c9eb833456abca
parent2968aac3ca173954cfc9eaef22c062a6ec0946cc (diff)
docs: Add git workflow to CONTRIBUTING.md (#876)
-rw-r--r--CONTRIBUTING.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b74cacc8e..4fa8af11d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -99,3 +99,15 @@ $ npm run dev
```
Once setup is complete, you can refer to VuePress documentation on the actual implementation here: https://vuepress.vuejs.org/guide/.
+
+### Git/GitHub workflow
+
+This is our preferred process for opening a PR on GitHub:
+
+1. Fork this repository
+2. Create a branch off of `master` for your work: `git checkout -b my-feature-branch`
+3. Make some changes, committing them along the way
+4. When your changes are ready for review, push your branch: `git push origin my-feature-branch`
+5. Create a pull request from your branch to `starship/master`
+6. No need to assign the pull request to anyone, we'll review it when we can
+7. When the changes have been reviewed and approved, someone will squash and merge for you \ No newline at end of file