Local SVN.
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Local SVN.
Is it possible to make a local svn repository?
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: Local SVN.
Try this before go for something sophisticated: http://www.visualsvn.com/server/
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- LasTravel
- Posts: 888
- Joined: Tue Jan 05, 2010 12:08 am
- Location: Spain
-
- Posts: 113
- Joined: Sun Feb 06, 2011 6:34 pm
Re: Local SVN.
use git-svn to clone the svn repository to git. Then you can use git to have a local repository and commit there. That way you can commit to that repository yourself and leech l2j changeset via git-svn rebase ( it will fetch all commits from svn to git ).
Someone who didnt bother reading the svn or ant manual and just waited for you to make him a visual guide for eclipse is not a guy that is willing to learn ... He is the definition of the leecher.
-
- Advanced User
- Posts: 1440
- Joined: Wed Apr 15, 2009 10:07 am
Re: Local SVN.
Any guides for git etc?Sylar88 wrote:use git-svn to clone the svn repository to git. Then you can use git to have a local repository and commit there. That way you can commit to that repository yourself and leech l2j changeset via git-svn rebase ( it will fetch all commits from svn to git ).
-
- Posts: 113
- Joined: Sun Feb 06, 2011 6:34 pm
Re: Local SVN.
There's not that much to say. For starts try egit, it has a documentation at the website too.
http://eclipse.org/egit/
And that if you're interested in the command line option.
http://trac.parrot.org/parrot/wiki/git-svn-tutorial
I use this together with command line ( linux ) git svn.
I ended up having a git repository in github in which i can pull/push from my local and sync it with l2j from team -> rebase.
You'll end up having something like this. If you dont wanna go remote, you simply dont push your local repository to your remote git one. So your local will have your commits inside plus the sync from l2j.
http://eclipse.org/egit/
And that if you're interested in the command line option.
http://trac.parrot.org/parrot/wiki/git-svn-tutorial
I use this together with command line ( linux ) git svn.
I ended up having a git repository in github in which i can pull/push from my local and sync it with l2j from team -> rebase.
You'll end up having something like this. If you dont wanna go remote, you simply dont push your local repository to your remote git one. So your local will have your commits inside plus the sync from l2j.
You do not have the required permissions to view the files attached to this post.
Someone who didnt bother reading the svn or ant manual and just waited for you to make him a visual guide for eclipse is not a guy that is willing to learn ... He is the definition of the leecher.
-
- Posts: 37
- Joined: Tue Oct 18, 2011 11:20 am
Re: Local SVN.
Maybe some guides how to install trac in Wamp ?