summaryrefslogtreecommitdiff
path: root/development.md
diff options
context:
space:
mode:
authorlixiaobing10051267 <li.xiaobing1@zte.com.cn>2016-08-17 16:49:48 +0800
committerlixiaobing10051267 <li.xiaobing1@zte.com.cn>2016-08-17 16:49:48 +0800
commitfd1f40af9b566320fd03242e5a3bd39a06accd3c (patch)
tree0e110adefd68c3fcbfd0ae6381eeef8f0310e9c2 /development.md
parentda2d4622d875a71b0bf084bb12ac12af3958c1cb (diff)
Incorrect branch name for git push command in development
Diffstat (limited to 'development.md')
-rw-r--r--development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/development.md b/development.md
index 809ee5ab..a6b57631 100644
--- a/development.md
+++ b/development.md
@@ -217,13 +217,13 @@ Then you can commit your changes and push them to your fork:
```sh
git commit
-git push -f origin myfeature
+git push -f origin my-feature
```
### Creating a pull request
1. Visit https://github.com/$YOUR_GITHUB_USERNAME/kubernetes
-2. Click the "Compare & pull request" button next to your "myfeature" branch.
+2. Click the "Compare & pull request" button next to your "my-feature" branch.
3. Check out the pull request [process](pull-requests.md) for more details
### When to retain commits and when to squash