1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

dep : Add Korean Translation (#3660)

This commit is contained in:
Proscream 2019-12-18 05:28:15 +09:00 committed by Starbeamrainbowlabs
parent e2ae506613
commit a5f91094dc

24
pages.ko/common/dep.md Normal file
View file

@ -0,0 +1,24 @@
# dep
> Go 프로젝트에서 종속성 관리를 위한 툴.
> 더 많은 정보: <https://golang.github.io/dep>.
- 현재 디렉토리를 Go 프로젝트의 루트 디렉토리로 초기화:
`dep init`
- 누락된 종속성 설치(Gopkg.toml 과 .go 파일들 스캔):
`dep ensure`
- 프로젝트의 종속성의 상태 보고:
`dep status`
- 프로젝트에 종속성 추가:
`dep ensure -add {{패키지_url}}`
- 모든 종속성들의 잠긴 버전 업데이트:
`dep ensure -update`