mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00

* 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>
24 lines
622 B
Markdown
24 lines
622 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`
|