Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
SVN for dummies?
Hello I have searched the Discussions and looked into the Wiki with no real success. Is there a step by step instruction how to maintain an auto update keeping my changes to the files using SVN? Or do I get this wrong?
0
This discussion has been closed.
Comments
svn checkout http://lussumo.com/svn/vanilla/trunk /path/to/my/vanilla/folder
Then you can use the following command to periodically get the latest files:
svn update
Keep in mind that by doing this, you will be using the most recent updates and changes to the core - and there may be bugs in them.
Most of the changes people make aren't to the core - which is what you want. Anything in the conf or extensions directories can be altered without any problems or worries of being overwritten by svn.
Do you know how to do that tortoiseSVN?
svn merge http://svn.example.com/repos/vendor/libcomplex/1.0 \ http://svn.example.com/repos/vendor/libcomplex/current \ libcomplex
svn_load_dirs.pl file:///path to vendor branch/Vanilla/current Vanilla.1.1.2 #cd to the Vanilla folder in your main branch working copy svn merge -r 86:HEAD file:///path to vendor branch/Vanilla/current
I know nothing about Totroise (PC stuff? I'm a *nix guy, os X currently) but it should use the same commands.
The command are the same, I think, it just I would like to be able to do without having to open a console.