Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Working locally with git and remote with subversion

Tags:

git

svn

I really like gitbut unfortunately only can submit to a subversion repository.

Is it possible to work locally with gitwith all benefits and submit/checkout from a subversion repository?

like image 424
Razer Avatar asked Feb 18 '12 13:02

Razer


2 Answers

git integrates nicely with subversion.

like image 182
Darin Dimitrov Avatar answered Sep 21 '22 01:09

Darin Dimitrov


You might find this ProGit chapter particularly useful.

One of Git’s great features is a bidirectional bridge to Subversion called git svn. This tool allows you to use Git as a valid client to a Subversion server, so you can use all the local features of Git and then push to a Subversion server as if you were using Subversion locally.

like image 35
Jeromy French Avatar answered Sep 20 '22 01:09

Jeromy French