Merge pull request #30758 from lixiaobing10051267/masterMyFeature

Automatic merge from submit-queue

Incorrect branch name for git push command in development.md

the branch name is "my-feature":

    ### Create a branch and make changes

    ```sh
    git checkout -b my-feature
pull/6/head
Kubernetes Submit Queue 2016-08-18 11:47:01 -07:00 committed by GitHub
commit 70ead67325
1 changed files with 2 additions and 2 deletions

View File

@ -217,13 +217,13 @@ Then you can commit your changes and push them to your fork:
```sh ```sh
git commit git commit
git push -f origin myfeature git push -f origin my-feature
``` ```
### Creating a pull request ### Creating a pull request
1. Visit https://github.com/$YOUR_GITHUB_USERNAME/kubernetes 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 3. Check out the pull request [process](pull-requests.md) for more details
### When to retain commits and when to squash ### When to retain commits and when to squash