-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated dev docs with latest instructions #341
Conversation
cd $GOPATH/src/github.com/kubernetes-incubator | ||
git clone https://github.com/$YOUR_GITHUB_USERNAME/kompose.git | ||
cd kompose | ||
git clone https://github.com/$YOUR_GITHUB_USERNAME/kompose.git $GOPATH/src/github.com/kubernetes-incubator/kompose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will fail as there is no folder created. although kompose
is no go get
able, it may be good to simply put go get github.com/kubernetes-incubator/kompose
here with the relevant docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will fail as there is no folder created.
directory will be created: man git clone
gives following
git clone <repository> [<directory>]
<directory> = The name of a new directory to clone into. The "humanish" part of
the source repository is used if no directory is explicitly given (repo for
/path/to/repo.git and foo for host.xz:foo/.git). Cloning into an existing
directory is only allowed if the directory is empty.
although
kompose
is nogo get
able, it may be good to simply putgo get github.com/kubernetes-incubator/kompose
here with the relevant docs.
kompose is go get
able
```console | ||
$ make binary | ||
``` | ||
Read about building kompose [here](https://github.com/kubernetes-incubator/kompose#building). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
cleaned up development docs to have latest changes
cc49305
to
3decdd7
Compare
cleaned up development docs to have latest changes