Using git-svn with an existing svn project

I am currently working on a project that has an svn repository. I'm used to git and love how it allows me to have a local repository, so I would like to use git-svn with this project.

I would like to know how to use git-svn from an svn project already on my computer. Do I really need to make a clone and start from there? Or can I just do something like git svn initin the current project folder and go from there?

I would also like to know about any big issues with git-svn, as this is a serious project, and I should not bother with the repo.

Thanks in advance.

+3
source share
1

git -svn . , svn, git.

init + fetch. clone init fetch.

, git svn rebase .

0

Source: https://habr.com/ru/post/1737490/


All Articles