From 283e29d6dbaeca7f6d183858b9731b6894a5ca64 Mon Sep 17 00:00:00 2001
From: lixiaobing10051267 
Date: Wed, 17 Aug 2016 16:49:48 +0800
Subject: [PATCH] Incorrect branch name for git push command in development
---
 docs/devel/development.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/devel/development.md b/docs/devel/development.md
index 809ee5ab46a..a6b57631f2c 100644
--- a/docs/devel/development.md
+++ b/docs/devel/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