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:
parent
e2ae506613
commit
a5f91094dc
1 changed files with 24 additions and 0 deletions
24
pages.ko/common/dep.md
Normal file
24
pages.ko/common/dep.md
Normal 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`
|
Loading…
Add table
Reference in a new issue