1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/git-svn.md
2016-01-05 16:40:34 +08:00

15 lines
302 B
Markdown

# git svn
> Bidirectional operation between a Subversion repository and Git
- clone an SVN repository
`git svn clone {{http://example.com/my_subversion_repo}} {{local_dir}}`
- update local clone from the upstream SVN repository
`git svn rebase`
- commit back to SVN repository
`git svn dcommit`