Skip to content

Commit

Permalink
Update repository links in development.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
roberthbailey committed Aug 12, 2015
1 parent 098dc40 commit 3962848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/devel/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Below, we outline one of the more common git workflows that core developers use.

### Fork the main repository

1. Go to https://github.com/GoogleCloudPlatform/kubernetes
1. Go to https://github.com/kubernetes/kubernetes
2. Click the "Fork" button (at the top right)

### Clone your fork
Expand All @@ -64,7 +64,7 @@ cd $GOPATH/src/k8s.io
# Replace "$YOUR_GITHUB_USERNAME" below with your github username
git clone https://github.com/$YOUR_GITHUB_USERNAME/kubernetes.git
cd kubernetes
git remote add upstream 'https://github.com/GoogleCloudPlatform/kubernetes.git'
git remote add upstream 'https://github.com/kubernetes/kubernetes.git'
```

### Create a branch and make changes
Expand All @@ -81,7 +81,7 @@ git fetch upstream
git rebase upstream/master
```

Note: If you have write access to the main repository at github.com/GoogleCloudPlatform/kubernetes, you should modify your git configuration so that you can't accidentally push to upstream:
Note: If you have write access to the main repository at github.com/kubernetes/kubernetes, you should modify your git configuration so that you can't accidentally push to upstream:

```sh
git remote set-url --push upstream no_push
Expand Down Expand Up @@ -166,7 +166,7 @@ export GOPATH=$KPATH
3) Populate your new GOPATH.

```sh
cd $KPATH/src/github.com/GoogleCloudPlatform/kubernetes
cd $KPATH/src/github.com/kubernetes/kubernetes
godep restore
```

Expand Down

0 comments on commit 3962848

Please sign in to comment.