Browse code

Simplify repo setups in Go workspace

N. Harrison Ripps authored on 2014/09/05 23:07:19
Showing 1 changed files
... ...
@@ -48,8 +48,7 @@ To get started, https://help.github.com/articles/fork-a-repo[fork] the https://h
48 48
 ----
49 49
 $ go get github.com/openshift/origin
50 50
 $ cd $GOPATH/src/github.com/openshift/origin
51
-$ git remote rename origin upstream
52
-$ git remote add origin git@github.com:<YOUR_GITHUB_USERNAME>/origin
51
+$ git remote add <YOUR_GITHUB_USERNAME> git@github.com:<YOUR_GITHUB_USERNAME>/origin
53 52
 ----
54 53
 
55 54
 From here, you can follow the https://github.com/openshift/origin/#getting-started[Getting Started section] of the README for a brief tour of OpenShift 3 functionality, which includes single- and multi-container pod examples.
... ...
@@ -71,8 +70,7 @@ First, https://help.github.com/articles/fork-a-repo[fork our fork] of Kubernetes
71 71
 ----
72 72
 $ go get github.com/openshift/kubernetes
73 73
 $ cd $GOPATH/src/github.com/openshift/kubernetes
74
-$ git remote rename origin upstream
75
-$ git remote add origin git@github.com:<YOUR_GITHUB_USERNAME>/kubernetes
74
+$ git remote add <YOUR_GITHUB_USERNAME> git@github.com:<YOUR_GITHUB_USERNAME>/kubernetes
76 75
 ----
77 76
 
78 77
 From there, head to the https://github.com/openshift/kubernetes#development[Development section] of the README for general information on tinkering with Kubernetes.