1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/git-svn.md
Managor ce9de4753a
*: fix style guide issues part 6 (#15792)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-07 13:14:54 +02:00

24 lines
624 B
Markdown

# git svn
> Subversion 저장소와 Git 간의 양방향 작업.
> 더 많은 정보: <https://git-scm.com/docs/git-svn>.
- SVN 저장소 클론:
`git svn clone {{https://example.com/subversion_repo}} {{local_dir}}`
- 특정 리비전 번호에서 시작하여 SVN 저장소 클론:
`git svn clone {{[-r|--revision]}} {{1234}}:HEAD {{https://svn.example.net/subversion/repo}} {{local_dir}}`
- 원격 SVN 저장소에서 로컬 클론 업데이트:
`git svn rebase`
- Git HEAD를 변경하지 않고 원격 SVN 저장소에서 업데이트 가져오기:
`git svn fetch`
- SVN 저장소에 커밋:
`git svn commit`