svn

Is there a way to integrate WebSVN RSS into eclipse

I'm using WebSvn on top of my SVN repository. WebSvn supports RSS notification (on directory level) for changes made in the repository. Is there an eclipse plug-in that checks WEbSVN RSS and notifies whenever someone commits and changes the code in the SVN repository. I'm looking for a nice integration within the eclipse package viewer...

Version Control System for small, in-house team

We are a small, in-house development team (5 people) who are developing a few Joomla (PHP) components for release. We need a version control system of some sort (preferably with some soft of integrated bug tracking) and none of us have any experience. We currently all simply work on the same files on a central development server but ne...

Internet connection Drops during an SVN commit

Hi ! During a large commit to a remote SVN repository, if the internet connection drops - will I have to start the commit again? OR will it "continue" where it left off ? Thanks Ojo ...

git svn rebase is failing with a conflict to a file that does not exist in git

I am currently working on a project on git-hub but our development team is using subversion. I have been doing the following to keep git-hub synced with our svn repository: git svn rebase git pull origin master git push origin master This has been working fine, but somehow I have messed something up and now I have a problem with one ...

Remote developers use one repo, we will use our own to build and deploy

Good Day. here is our requirement. We have a team of remote developers who use their own svn repository. They are committing all changes to /trunk. We want to grab a nightly snapshot of their repo and import it into ours. We want to create branches and tags to identify the releases and we will build and deploy on our side. Initia...

Tortoise SVN - Case sensitivity issue under Windows - Problem Merging

I have been working in a branch for a couple months and am now trying to merge the trunk into the branch, before finally merging my branch into the trunk. After successfully merging a few revisions, SVN threw an error about the "bin" folder being locked. When I created my branch, the folder was called "Bin", but at this particular revi...

svn export from HEAD

I have been doing an svn export from a working copy I have, but I am unsure of how to do a svn export from my latest revision in the repository. This is what I use now: svn export /path/to/working/dir which exports the dir folder to the current directory I am in. ...

multi-product project layout with svn and maven

Hi, I need to migrate a project from Ant to Maven. This project has multiple proprietary packages (lets say, stacked in 3/4 layers. some of the layers share the same svn repo). Also, it's using ~30 3rd party packages (which are currently manages with svn:externals). On top of that, there are ~10 different "products" (different packaging...

svn: Access denied

Im getting this error when committing on SVN : svn: Commit failed (details follow): svn: Access denied I'am using Windows 7 Any ideas? ...

Can anyone recommend a pre-commit web based diff viewer for subversion?

Edited to make my requirements a little more clear I would love to find a decent web viewer similar to Trac's changeset page: http://trac.edgewall.org/changeset/10173. The only catch is that I need it to be pre-commit. These are for small changes that don't justify a branch/merge. Anyone know of such a tool? Must have: Must be pre-...

How do I get source code from Google code?

How can I get editable source code off of Google Code? (I'm looking into SipDroid and Siphon in particular.) EDIT: I'm not looking to check back in, I just want the source so I can use it in my project. ...

How to create a subversion repository with standard layout?

Is it possible to create a new SVN repository which is automatically structured by the SVN standard repository layout (trunk, branches, tags) via commandline (svnadmin create)? Or do I always have to create thos directories manually? ...

How to render index.html normally when using DAV SVN?

I have the DAV SVN Apache module running so that I can serve a read-only version of my repositories over HTTP. My goal is to be able to show available HTML-based code documentation (javadoc, etc.) in my repositories using the browser's normal HTML rendering capabilities, instead of the files being spat out as plain text by the DAV SVN m...

Strategy for branching in subversion with mobile releases

I'm developing a series of applications for mobile devices, we'll call them Orange, Cherry, and Pear. Now, because of my familiarity with Blackberry, I chose to begin implementing the first of these three applications, Orange, on the Blackberry platform. I found a way to integrate a number of Blackberry platforms (since they use relati...

Is there a way to svn co a local copy to a remote directory?

Is there a way to svn check out a local working copy to a remote directory? Running the import command works: svn import -m "Testing import" my-working-copy.dev svn+ssh://[email protected]/root/my-working-copy However, svn co doesnt: svn co file://localhost/Library/WebServer/Documents/my-working-repo/trunk svn+ssh://root@som...

Are there any automated SVN->GIT syncing services?

There's an SVN open-source project which I have read-only access to, and I'd like to create a GIT mirror of that project up to date on GitHub. I know how to set up the initial mirror and then keep it up to date with git svn rebase, but that still requires having a server set up somewhere with a cron job running to handle the syncing, s...

Why Does SVN Conflict Resolution Show Old Resolved Conflicts

SUMMARY: Why does external SVN conflict resolution show literal files comparisons and not recent change deltas? DETAIL While merging, SVN reports a conflict. That's fine. However while using launch to examine the conflict, I am shown not just the current conflict but historical conflicts which I have already dealt with. (The conflic...

php exec() not returning error message in output when executing svn command

Hello everyone. I am trying to get certain output for svn command in XML format. Output is ok when I type valid parameters. However, when I type in wrong password, output does not show error message. This is the PHP code: exec('/usr/bin/svn --username something --password something --non-interactive log -r HEAD --xml --verbose http://a5...

Should a language port of a program be in a new SVN repo?

We have a program almost complete, but now need it in another language. Since it's the same program, should it be in a separate folder in the same repoor in a new repo since the code isn't used together, or is there no conversation and I can do whatever I want? Edit: I mean programming language. The program is going from Java to C#. ...

How to handle 2 projects, one that contains the other?

If you had a SVN repo set up for a script, like a shopping cart, how would you handle a site that will use the cart, but contain custom features as well? You need source control on the custom parts, so you add a new repo. Do you copy the script repo to the site-specific one? If you do and bug fixes are applied to the script, you would al...