首先期待下官方的GO語言依賴管理工具dep的誕生吧。 govendor簡介
在Golang1.5之後,Go提供了 GO15VENDOREXPERIMENT 環境變數,用於將go build時的應用路徑搜尋調整成為 當前項目目錄/vendor 目錄方式。
govendor安裝
go get -u -v github.com/kardianos/govendor
govendor使用
#在GOPATH的src目錄下建立項目waetool#進入到項目目錄cd /home/gopath/src/waetool#初始化vendor目錄,會自動建立vendor目錄govendor init#查看項目目錄[root@CC54425A waetool]# lsvendor#建立go專案檔main.go#將GOPATH中本工程使用到的依賴包自動移動到vendor目錄中#說明:如果本地GOPATH沒有依賴包,先go get相應的依賴包#自動引入在main.go代碼中import的項目依賴到vendor檔案夾內govendor add +external#通過設定環境變數 GO15VENDOREXPERIMENT=1 使用vendor檔案夾構建檔案。#可以選擇 export GO15VENDOREXPERIMENT=1 或 GO15VENDOREXPERIMENT=1 go build 執行編譯export GO15VENDOREXPERIMENT=1
其他指令參考
# View your work.govendor list# Look at what is using a packagegovendor list -v fmt# Specify a specific version or revision to fetchgovendor fetch golang.org/x/net/context@a4bbce9fcae005b22ae5443f6af064d80a6f5a55govendor fetch golang.org/x/net/context@v1 # Get latest v1.*.* tag or branch.govendor fetch golang.org/x/net/context@=v1 # Get the tag or branch named "v1".# Update a package to latest, given any prior version constraintgovendor fetch golang.org/x/net/context# Format your repository onlygovendor fmt +local# Build everything in your repository onlygovendor install +local# Test your repository onlygovendor test +local