This question comes to you from someone who's been burned by SVN before and am henceforward afraid of it. So I have a little problem because I was stupid when I was working on my SVN repo. I was developing a project, let's say containing one file, that I just released as a first minor version. So my svn repo looked like this:
project/
-...
I'm trying to use svnkit to access subversion from the svnant ant tasks with the following result:
BUILD FAILED
/path/to/build.xml:49: Cannot find javahl, svnkit nor command line svn client
at org.tigris.subversion.svnant.SvnTask.getClientAdapter(Unknown Source)
at org.tigris.subversion.svnant.SvnTask.execute(Unknown Source)
I...
I am developing a project for which I have used a number of external libraries (in jar format). I have added all of the external jars I have downloaded and added to the build path to our version control (subversion) as well.
However it has recently come to my attention that a number of the libraries are not in the SVN tree. I have look...
I have an Application that is based on loaded test programs, saved as text-based files in a specific user data folder. All fine. A client has just commented that they would like to have full traceability of changes to such test programs (for ISO9001 etc) and it occured to me that I could provide some kind of checkout / commit mechanism a...
Hi,
Does anyone know any way from the command line or with subclipse that I can get the list of files I have checked out?
Thanks.
...
I've got a little frustrated at trying to get SVN to work with Codeplex. I thought it was a firewall in the office blocking it, fair enough, so started trying at home and get exactly the same error.
I'm trying to connect to some source on codeplex. I've tried the main main branch and I've also tried my Fork that I create through the sit...
We created a TAG for a release version of one of our products (e.g. 4.3.0GA).
Then we deployed it in production instances. next day the production instances totally crashed, making themselves absolutely unusable. we quickly release a new version fixing the bug. and put them in production.
Then we updated the our TAG (4.3.0GA) with the b...
Suppose I have tagged the release version of our project under $SVNROOT/project/tags/1.0. Suppose now that I need to create a branch from that tag, mark it as being a SNAPSHOT, and update the scm configuration.
I tried with the release:prepare goal thus:
$ svn co $SVNROOT/project/tags/1.0 project-1.0
$ cd project-1.0
$ mvn release:bran...
Building and maintaining a database that is then deplyed/developed further by many devs is something that goes on in software development all the time. We create a build script, and maintain further update scripts that get applied as the database grows over time. There are many ways to manage this, from manual updates to console apps/bui...
How do you manage local repositories when using Eclipse? (I'm new to SVN and Eclipse.)
I've just set up my first Eclipse PHP project with a Eclipse checkout from SNV. I mapped my repos to localhost/repos using in my apache http.conf file.
That's fine for ONE repos, but I'm going to be using many repos.
What is the best way to access ...
I have installed visual SVN server on windows XP.(Authentication method - windows login). I edited the pre-lock.cmd script and put a comment line, "REM do nothing". Next I tried to get a lock on a file. Everything works great uptil this point! . Then I try to release the lock and get the following error "Server sent unexpected return val...
Hi all,
Just wondering if someone could help me with the following issue.
On my local Windows 2003 Server I have VisualSVN installed. Now what I want to do is move these files on a commit from the local server to my hosted (dedicated) Linux web server.
I have no idea about how to approach this and have never written a hook script; the...
every time when i run svn update, it askes me : reject, accept temporarily or accept permanently, every time i say permanently but nothing changes. what can be the problem??? could you please help me...
...
I'm a bit unclear about merging branches in SVN and was wondering if someone could explain...
project1
trunk
foo.c
bar.c
baz.c
branches
tags
project2
trunk
foo.c
quux.c
boing.c
branches
project1-offshoot
foo.c
bar.c
baz.c
boing.c
tags
Suppo...
Hi,
svn help log doesn't give me an option to see the history recursively.
svn log -l3 --recursive SVN_ROOT_URL does not work. I would expect that it gives me the last 3 commits below SVN_ROOT_URL.
This is really annoying. I always have to start my IDE or look at team-city to see the last commits on a project (though I am not sure whi...
I am trying to find a viable strategy to a following problem.
We have several web projects which are dependent on our framework. Everything is stored in our SVN and has its own project with all the necessary directory structure (trunk, tags, branches). In an example - we have projects webprj01 and webprj02 and we have a framework frm01....
I am trying to get subversion up and running through xcode.
I'm following apples docs at http://developer.apple.com/mac/articles/server/subversionwithxcode3.html
Everything looks to be going okay until I try and add the repository, which indicates that the connection is established, but I am getting this error.
The authenticity of ...
Hi,
I am hosting a project on Google Code, using Subversion. I would like to tag builds with the revision number.
One possibility I have researched is to use svn:keywords to substitute the revision number into some file. This isn't exactly what I want, because it will only tell when that particular file was last changed.
Another optio...
I'm trying to list all files and folders recursively under a given folder in svn using the org.tmatesoft.svn.core library in c#. I'm trying to use the getDir() function and put an iterator on the collection object. But I'm not able to access individuals objects in the collection.
Is this the way to go about it?
Or is there another cleane...
Due to a change in developers, I need to destroy my trunk (but keep for posterity) and then load in a local copy to replace it.
I have a couple of thought on how to do this.
1) Delete every file from trunk
2) Commit the deletions
3) Copy the "new" trunk into the working copy
4) Add recursively all files
5) Commit
OR
1) Move trunk to ...