!, ^, cs*, ctags, cvs, cwebp, cypher-shell, czkawka-cli: update and add Korean translation (#14099)

This commit is contained in:
HoJeong Im
2024-10-12 02:05:31 +09:00
committed by GitHub
parent 5ceae06882
commit 6bfd085719
13 changed files with 248 additions and 0 deletions

32
pages.ko/common/cvs.md Normal file
View File

@@ -0,0 +1,32 @@
# cvs
> 수정 관리 시스템이며 동시성 버전 관리 시스템.
> 더 많은 정보: <https://cvs.nongnu.org>.
- 새로운 저장소를 생성 (`CVSROOT` 환경 변수를 외부에서 설정해야 함):
`cvs -d {{경로/대상/레포지토리}} init`
- 저장소에 프로젝트를 추가:
`cvs import -m "{{메시지}}" {{프로젝트_이름}} {{버전}} {{벤더}}`
- 프로젝트 체크아웃:
`cvs checkout {{프로젝트_이름}}`
- 파일에 대한 변경 사항 표시:
`cvs diff {{경로/대상/파일}}`
- 파일 추가:
`cvs add {{경로/대상/파일}}`
- 파일 커밋:
`cvs commit -m "{{메시지}}" {{경로/대상/파일}}`
- 원격 저장소에서 작업 디렉터리를 업데이트:
`cvs update`