GO語言依賴管理工具govendor的使用

來源:互聯網
上載者:User

首先期待下官方的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




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.