ソースを参照

dep: add page (#1796)

Ravern Koh 7 年 前
コミット
aaba5c5b12
1 ファイル変更23 行追加0 行削除
  1. 23 0
      pages/common/dep.md

+ 23 - 0
pages/common/dep.md

@@ -0,0 +1,23 @@
+# dep
+
+> Tool for dependency management in Go projects.
+
+- Initialize the current directory as the root of a Go project:
+
+`dep init`
+
+- Install any missing dependencies (Scans Gopkg.toml and your .go files):
+
+`dep ensure`
+
+- Report the status of the project's dependencies:
+
+`dep status`
+
+- Add a dependency to the project:
+
+`dep ensure -add {{package_url}}`
+
+- Update the locked versions of all dependencies:
+
+`dep ensure -update`