I'm working on a project for which everyone uses SVN
as a centralized server and everybody pushes the changes they do on that server. I want to use Git
locally and I'm pretty new to git svn
. I did a git svn clone
of the repository with git svn clone -r HEAD https://svn.repo/app/branch
an I want to do an update through git.
I need a 'git pull like' command but to pull from a specific revision of the SVN server repo. Also is there a 'fetch like' command to fetch from a specific revision of the SVN server repo?
I don't have any .svn
folders in my cloned project and git remote
doesn't give me anything. However I did a git config -l
and I get the SVN server's URL, so somehow I'm linked with the SVN server. I don't know how to fetch or pull though.
Thanks!