git-*: add and update Korean translation (#12937)

This commit is contained in:
코드싸이
2024-06-12 14:28:50 +09:00
committed by GitHub
parent e1c7803f67
commit 16cd6cc0c8
23 changed files with 635 additions and 27 deletions

16
pages.ko/common/git-rm.md Normal file
View File

@@ -0,0 +1,16 @@
# git rm
> 저장소 인덱스와 로컬 파일 시스템에서 파일을 제거합니다.
> 더 많은 정보: <https://git-scm.com/docs/git-rm>.
- 저장소 인덱스와 파일 시스템에서 파일 제거:
`git rm {{경로/대상/파일}}`
- 디렉토리 제거:
`git rm -r {{경로/대상/폴더}}`
- 저장소 인덱스에서 파일 제거하되 로컬에서는 그대로 유지:
`git rm --cached {{경로/대상/파일}}`