Work locally with git and remote with disruptive

I really like git , but unfortunately it can be submitted to the subversion repository.

Is it possible to work locally with git with all the benefits and send / check from the subversion repository?

+4
source share
3 answers

It just appeared on Hackernews: Working with git in a Subversion project

0
source

git integrates nicely with subversion.

+4
source

You may find this ProGit chapter especially useful.

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

+2
source

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


All Articles