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 .
pull/6/head
Kubernetes Submit Queue 2016-08-04 11:23:58 -07:00 committed by GitHub
commit c24cf99fa6
1 changed files with 1 additions and 1 deletions

View File

@ -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.
```