mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-05 03:56:25 +03:00
0819a11434
* git-a*: add and update Korean translation * git-b*: add and update Korean translation * git-*: add and update Korean translation * Update git-standup.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
544 B
544 B
git submodule
서브모듈을 검사하고 업데이트하며 관리합니다. 더 많은 정보: https://git-scm.com/docs/git-submodule.
- 저장소의 지정된 서브모듈 설치:
git submodule update --init --recursive
- Git 저장소를 서브모듈로 추가:
git submodule add {{repository_url}}
- Git 저장소를 지정된 폴더에 서브모듈로 추가:
git submodule add {{repository_url}} {{경로/대상/폴더}}
- 모든 서브모듈을 최신 커밋으로 업데이트:
git submodule foreach git pull