Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I save a commit in Subversion?

Tags:

svn

If I'm not online, I sometimes want to package some changes to a commit, that is saved in the working copy and can be really committed to the repository once I back online. How can I do that with Subversion (possible with the help of additional tools).

like image 627
Mnementh Avatar asked Oct 20 '25 05:10

Mnementh


1 Answers

You could use git-svn and establish a local git repository that you keep in sync with the svn. You can do local commits to the git repository while working offline and transfer the changes to the central svn when you come back online.

like image 176
lathander Avatar answered Oct 22 '25 04:10

lathander