I am working on SVN, and trying to commit some of the changes I made. But I got an error message telling me that
delete --force C:/workspace/Project/src/main/java/com/test/ml
Bogus filename
svn: 'C:\workspace\Project\src\main\java\com\test\ml' does not exist
does anyone know how to fix this problem?
...
I've got a couple of projects where it would be useful to be able to interact with an SVN server from appengine.
Pull specific files from the svn (fairly easy, since there is a web interface which I can grab the data off automatically, but how do I authenticate)
Commit changes to the svn (this is the really hard/important part)
Possibl...
I am trying to simulate a problem we have with a particular domain ID which has issues accessing a subversion repository. Towards this, I tried a svn checkout with the
option --username *domain\problematic_ID* on another windows machine. But I am not able to reproduce the problem as the checkout still succeeds using my own ID. This led ...
I am using Eclipse and SVN as a source repository. Whenever the user checks in the code I want to add the SVN version and userid of who made the changes and comments given by the user before checking the code into the file.
Is there any code template available for this?
...
Are there any patches out there for custom keywords in SVN?
...
We've been using subversion for version control for our software projects for quite a while now. Since we develop in python, I've recently started using subversion to deploy working copies of the sites. When a site is updated in the repo, a post-commit hook is called on the server and it pushes the changes to the live sites.
Continuing ...
Background: Before committing a change, I want to compile the old version (without changes) and the new version of the program and compare their output, like this:
svn export -r HEAD . /target/for/old-version
svn export . /target/for/new-version
... compile and run code in /target/for/old-version
... compile and run code in /tar...
svn diff --summarize shows the changes at the file level for a commit. Output it something like:
M modified-foo.bar
D deleted-file.bar
A new-file.bar
Similar to svn status, but for commits. I would be happy with output similar to git status, but for a particular commit instead of the working copy. I know I could fire up gitk...
Is performing an "svn log -q -v" across all revisions against the repository root and then filtering by the desired path really the best (only?) way to do this? We need to find these ranges in order to provide peg revisions to an automated tool and to add supporting detail to our change reporting.
I have made a slight optimization to...
I would like the ability to pass a specific revision to the SVN task (in ccnet.config) that I want the buildserver to checkout from SVN and build. So I don't always want the latest revision. And no, I don't want to create a tag for every successful build.
Looking at the configuration elements here: http://ccnet.sourceforge.net/CCNET/Sub...
Hi all,
When updating my checked out directory with TortoiseSVN, some subfolders are listed as "Skipped" even though I know there are updates. Even if I try to update that folder alone it will say "Skipped", but still sit there and download MBs of updates.
Has anyone else seen this?
-Cole
...
I have Visual SVN Server on my Vista laptop. The repository resides on the second hard drive. I am doing a clean install of Windows 7 in the next few days. How do I configure or install Visual SVN Server again and keep the users, repositories, and settings intact from the previous installation? Thanks.
...
OK, I understand the trunk/tags/branches thingy for a repository with a single project.
Now let's say I have a main project and a number of smaller auxiliary modules/ plugins / tools / scripts etc. During the early stages there's a lot of renaming, reorganization, etc., and some of them die an early death because they go nowhere. It doe...
Is there any way to merge two users' history into one user in SVN?
...
Okay. I used svn's hotcopy to make incremental back-ups, now how do I test that the hotcopies will work properly?
I searched the posts here regarding hotcopy. Most of them seem to just be encouraging the use of the svn hotcopy, but not talking about how to recover using hotcopy once made.
Is there any advice about how to recover us...
Does SVN allow you to completely and cleanly delete an entire revision from its folder structure?
I used Tortoise SVN to delete a file from the SVN repository, and due to size I want it to be completely removed from the repository. It appears to be deleted from the head revision, but not from the SVN folder structure.
I would like ...
Hi, I'm kinda new to SVN plus I'm usually on a 1-2 man project so most of the time I'm the only one using it.
Here's the deal,
In my repository there are a total of 2 revisions of all of the src code. The src code are currently on revision 2 but one of my files fuzzed up so I reverted it to its revision 1 counterpart.
Now after a few ...
I use Tortoise svn along with about 20 others at our site and all have an ongoing issue with it. Whenever you choose any command (update, commit, or ANY item of the right-click menu) there is almost always an initial lack of repsonse from the software.
That is, it hourglasses for a few seconds and then does nothing. So you repeat the req...
Here we have have an SVN repository with a trunk and a branch for development on a new release.
The branch is nearing ready for release now so I decided to reintegrate the branch back down to the trunk. Obviously there were some conflicts. Including quite a lot of tree conflicts from files that had been deleted in the trunk.
I resolved...
At the moment our backup script explicitly runs svnadmin hotcopy on each of our repositories every night. Our repos are all stored under a parent directory (/usr/local/svn/repos)
Our backup script has a line for each of the repos under that directory along the lines of:
svnadmin hotcopy /usr/local/svn/repos/myrepo1 /usr/local/backup/myre...