Print at Dec 15, 2025, 5:32:58 PM

Posted by Kunda at Aug 4, 2018, 12:07:39 AM
Re: Move to git (and github)?
I found https://github.com/svn2github/sweet3dhome
In case dev want to hack on sweethome3d and use git...in order to generate a patch compatible with SVN (according to what I've read in https://stackoverflow.com/questions/708202/gi...atch-to-be-svn-compatible) you need to:

Create the patch with
git diff --no-prefix master..branch > somefile.diff
the master and branch part are optional, depends how you want to get your diffs.
Then @Puybaret could apply it with
patch -p0 < somefile.diff.