From a5f91094dccc99cd5afa2f87af1030c47e8c0a7a Mon Sep 17 00:00:00 2001 From: Proscream Date: Wed, 18 Dec 2019 05:28:15 +0900 Subject: [PATCH] dep : Add Korean Translation (#3660) --- pages.ko/common/dep.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.ko/common/dep.md diff --git a/pages.ko/common/dep.md b/pages.ko/common/dep.md new file mode 100644 index 000000000..b25ce221d --- /dev/null +++ b/pages.ko/common/dep.md @@ -0,0 +1,24 @@ +# dep + +> Go 프로젝트에서 종속성 관리를 위한 툴. +> 더 많은 정보: . + +- 현재 디렉토리를 Go 프로젝트의 루트 디렉토리로 초기화: + +`dep init` + +- 누락된 종속성 설치(Gopkg.toml 과 .go 파일들 스캔): + +`dep ensure` + +- 프로젝트의 종속성의 상태 보고: + +`dep status` + +- 프로젝트에 종속성 추가: + +`dep ensure -add {{패키지_url}}` + +- 모든 종속성들의 잠긴 버전 업데이트: + +`dep ensure -update`