1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-05 00:58:52 +02:00

another clarification to CONTRIBUTING.md

This commit is contained in:
BCjwhisenant
2013-03-22 14:14:22 -04:00
parent 30949a3c83
commit d40c33cf65

View File

@ -75,12 +75,13 @@ Thanks again for helping out! One thing we ask is that you refer to the [code st
Since the issue filing process is described elsewhere, let's assume that you've filed or claimed the issue already. Since the issue filing process is described elsewhere, let's assume that you've filed or claimed the issue already.
Next, create the branch. We've created a grunt plugin that helps you do this. Next, create the branch. We've created a grunt plugin that helps you do this.
For new features:
Run this command for new features:
```bash ```bash
grunt feature:start grunt feature:start
``` ```
If you're fixing an issue: Run this command if you're fixing an issue:
```bash ```bash
grunt issue:start grunt issue:start
``` ```
@ -123,12 +124,12 @@ Thanks again for helping out! One thing we ask is that you refer to the [code st
git checkout (branchname) git checkout (branchname)
``` ```
To clean up your feature: Run this command to clean up your feature:
```bash ```bash
grunt feature:delete grunt feature:delete
``` ```
Or your bug fix: Run this command to clean up your bug fix:
```bash ```bash
grunt issue:delete grunt issue:delete
``` ```