diff options
| author | Kubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com> | 2016-08-04 11:23:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-04 11:23:58 -0700 |
| commit | 86d1d494cacf0d17e58afed1cae1cd47b8d71e6a (patch) | |
| tree | 9c63f65f906b7172a6412a36b4685542bf2cff9b | |
| parent | 2b079d26745b3d477d97813384980fdaa1db32fd (diff) | |
| parent | 668f8a6986a27bfeb3a98c5b52c0fc6be46e1493 (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 .
| -rw-r--r-- | development.md | 2 |
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. ``` |
