Skip to content

Commit

Permalink
chore(docs): fix confusing steps order
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellmb committed Mar 13, 2014
1 parent a0e36ef commit 8afefdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ To ensure a clear and consistent style of test patterns, every block of code mus
* Commit your changes and create a descriptive commit message (the commit message is used to generate release notes, please check out the [commit message conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y) and the commit message presubmit hook [validate-commit-msg.js](hooks/validate-commit-msg.js)): `git commit -a`
* Push your branch to Github: `git push origin my-fix-branch`
* In Github, send a pull request to `daniellmb:master`
* If you need to make changes to your pull request, you can update the commit with `git commit --amend`. Then, update the pull request with `git push -f`.
* When the patch is reviewed and merged, delete your branch and pull yours — and other — changes from the main (upstream) repository:
* Delete your branch in Github, run: `git push origin :my-fix-branch`
* Check out the master branch, run: `git checkout master`
* Delete your local branch, run: `git branch -D my-fix-branch`
* Update your master with the latest upstream version, run: `git pull --ff upstream master`
* If you need to make changes to your pull request, you can update the commit with `git commit --amend`. Then, update the pull request with `git push -f`.

That's it! Thank you for your contribution!

Expand Down Expand Up @@ -102,4 +102,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.

0 comments on commit 8afefdd

Please sign in to comment.