https://github.com/mehcode/go-develop
Wrapper for `go get` to setup a project for development.
https://github.com/mehcode/go-develop
Last synced: 6 months ago
JSON representation
Wrapper for `go get` to setup a project for development.
- Host: GitHub
- URL: https://github.com/mehcode/go-develop
- Owner: mehcode
- License: mit
- Created: 2016-06-02T07:11:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-02T08:19:56.000Z (over 9 years ago)
- Last Synced: 2025-03-17T03:13:35.394Z (12 months ago)
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-develop
> Wrapper for `go get` to setup a project for development.
## Features
- Uses `git clone` (therefore supports ssh, private repositories, etc.)
- Operates like `git clone` by creating a symlink to the project directory from GOPATH to the current directory
## Usage
Each of the following commands result in an identical project layout in GOPATH.
```
$ go-develop https://github.com/mehcode/go-develop.git
$ go-develop https://github.com/mehcode/go-develop
$ go-develop git@github.com:mehcode/go-develop
$ go-develop git@github.com:mehcode/go-develop.git
$ go-develop ssh://git@github.com/mehcode/go-develop.git
```