Commit 982a8e43 authored by Jason Song's avatar Jason Song Committed by GitHub

Update CONTRIBUTING.md

parent c22ac563
...@@ -22,4 +22,16 @@ We provide template files [intellij-java-google-style.xml](https://github.com/ct ...@@ -22,4 +22,16 @@ We provide template files [intellij-java-google-style.xml](https://github.com/ct
* If no-one else is using your branch, please rebase it against the current master (or other target branch in the main project). * If no-one else is using your branch, please rebase it against the current master (or other target branch in the main project).
* Normally, we would squash commits for one feature into one commit. There are 2 ways to do this:
1. To rebase and squash based on the remote branch
* `git rebase -i <remote>/master`
* merge commits via `fixup`, etc
2. Create a new branch and merge these commits into one
* `git checkout -b <some-branch-name> <remote>/master`
* `git merge --squash master`
* When writing a commit message please follow these conventions: if you are fixing an existing issue, please add Fixes #XXX at the end of the commit message (where XXX is the issue number). * When writing a commit message please follow these conventions: if you are fixing an existing issue, please add Fixes #XXX at the end of the commit message (where XXX is the issue number).
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment