mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lunny Xiao
4bdcfef6d8
|
11 years ago | |
---|---|---|
cmd | 11 years ago | |
doc | 11 years ago | |
docs | 11 years ago | |
.gitignore | 11 years ago | |
.gopmfile | 11 years ago | |
LICENSE | 11 years ago | |
README.md | 11 years ago | |
gopm.go | 11 years ago |
README.md
gopm - Go Package Manager
gopm(Go Package Manager) is a Go package manage tool for search, install, update and share packages in Go.
Attention This application still in experiment, we'are working on new break version, you may use old version for now.
Requirement
Currently, gopm use soft syb link
INSTALL
You should install Go and Go tool before install gopm currently.
go get github.com/gpmgo/gopm
This will install gopm on $GOPATH$/bin。Before using gopm, you should add this to $PATH.
Features
- Don't need to install git, svn, hg etct. for installing packages.
- Package has version
- Every project has owner GOPATH
- Put your Go project on anywhere you want
Commands
- Show the command help
gopm help
- Show gopm version
gopm version
- Get a package
gopm get github.com/gpmgo/gopm
- Search a package
gopm search gopm
- Build a project, the build's arguments are the same as go build. But it will check all the dependencies and dowload them.
<change to project directory>
gopm build
- Run a go file
<change to project directory>
gopm run main.go
- Install
<change to project directory>
gopm install