summaryrefslogtreecommitdiff
path: root/development.md
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2016-08-04 11:23:58 -0700
committerGitHub <noreply@github.com>2016-08-04 11:23:58 -0700
commit86d1d494cacf0d17e58afed1cae1cd47b8d71e6a (patch)
tree9c63f65f906b7172a6412a36b4685542bf2cff9b /development.md
parent2b079d26745b3d477d97813384980fdaa1db32fd (diff)
parent668f8a6986a27bfeb3a98c5b52c0fc6be46e1493 (diff)
Merge pull request #30055 from lixiaobing10051267/masterClonePath
Automatic merge from submit-queue Replace with explicit kubernetes fork path At other place in development.md, explicit kubernetes fork path has been existed: mkdir -p $GOPATH/src/k8s.io cd $GOPATH/src/k8s.io # Replace "$YOUR_GITHUB_USERNAME" below with your github username git clone https://github.com/$YOUR_GITHUB_USERNAME/kubernetes.git the following is easy to be confused and can be replaced with same description: git clone https://path/to/your/fork .
Diffstat (limited to 'development.md')
-rw-r--r--development.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/development.md b/development.md
index 3dc1a3c6..08b66e8a 100644
--- a/development.md
+++ b/development.md
@@ -243,7 +243,7 @@ separate dependency updates from other changes._
export KPATH=$HOME/code/kubernetes
mkdir -p $KPATH/src/k8s.io
cd $KPATH/src/k8s.io
-git clone https://path/to/your/kubernetes/fork # assumes your fork is 'kubernetes'
+git clone https://github.com/$YOUR_GITHUB_USERNAME/kubernetes.git # assumes your fork is 'kubernetes'
# Or copy your existing local repo here. IMPORTANT: making a symlink doesn't work.
```