tldr/pages/common/git-svn.md

20 lines
374 B
Markdown
Raw Normal View History

2016-01-05 01:03:43 +00:00
# git svn
> Bidirectional operation between a Subversion repository and Git.
2016-01-05 01:03:43 +00:00
- Clone an SVN repository:
2016-01-05 01:03:43 +00:00
`git svn clone {{http://example.com/my_subversion_repo}} {{local_dir}}`
2016-07-13 17:57:09 +01:00
- Fetch new revisions from remote SVN repository:
`git svn fetch`
- Update local clone from the upstream SVN repository:
2016-01-05 01:03:43 +00:00
`git svn rebase`
- Commit back to SVN repository:
2016-01-05 01:03:43 +00:00
`git svn dcommit`