Hi, I'm encountering the following error when attempting to (svn) import from within Xcode).
Import Failed
Error: 200030 (SQLite error) Description: no such table: rep_cache
This is a new repository.The svnserve process runs normally. Existing repositories work fine (import, commit, and export) from within Xcode.
Neither MacPorts nor...
Hi,
I'm using svn on a mac. I'm trying to add an eclipse project to a repo. I want to ignore all .class files, and a few subfolders. I am using an ignore.txt file which (kind of) works. My folder structure, for example:
project/
extras/
test.class
zips/
blah.class
ignore.txt
then my ignore.txt file looks like thi...
I am trying to migrate to svn from a not-so-famous version control system (lets call it nsfvc). svn trunk was created some time ago from nsfvc's trunk. There is an active branch in nsfvc that I have to import to svn branch. The diff between nsfvc's trunk and branch is huge (updates, renames, additions, deletions, moves).
How do I go abo...
I setup svn on fedora, all correct folowing instructions.
here http://www.ferdychristant.com/blog/articles/DOMM-6NFJ6J
but when I am accessing /svn/repos/test
apache forwards me to one of two virtual hosts defined in httpd.conf
I have two instances of web applications running on tomcats. So apache confgiured with 2 virtual hosts using ...
What architectural changes would a DVCS need to be completely interoperable with Subversion?
Many DVCSs have some kind of bidirectional interface with Subversion, but there are limitations and caveats. For instance, git-svn can create a repository that mirrors Subversion, and changes to that repo can be sent back to Subversion via 'dco...
Hi,
I am creating an eclipse project, which generates a lot of files I don't want to keep under version control. For example, it creates a project folder like:
project/
bin/
horse.class
cow.class
src/
horse.java
cow.java
so what I do is add the project folder to svn, like:
svn add project
this puts ...
I am new to SVN. I have a lot of old, unused files that I want to archive or copy to a different repository or directory. How can I archive these files and keep the history of their revisions?
...
I wasn't sure if this is SuperUser or StackOverflow material, but since the end result is for programming I'll start here. I'm looking for a lightweight editor with svn support. What is your favorite?
...
We have been using SVN for the past year now and when we migrated to an online server we started getting this error:
Commit: Commit failed (details follow): File or directory 'x.php' is out of date;
try updating resource out of date;
try updating CHECKOUT of '/!svn/ver/491/x.php': 409 Conflict (http://svn.example.com)
We are current...
We have been happily creating automated FAULTY backups of SVN repositories!!
It turns out that we were not backing up the file 'format' in each of the repositories.
Is there a way of recreating the file (and hence our repository and history)
I think (hope!) that this is the only file missing.
TIA
Ivan Vernot
...
Hello,
I know that when using Subversion, adding/copying/renaming files must be done via 'svn add' or 'svn copy' etc. In my Eclipse IDE, I use Subclipse to work with subversion. It's easy enough to add text-based files to version control (ie. php/html/js files) - but how do I properly add images to version control using Subclipse?
Th...
I would like to ditch SVN for Git. My current SVN repository setup has projects under trunk (/trunk/projecta, /trunk/projectb, etc. with tags and branches at /tags/projecta-1.0, etc.). I would like to create distinct Git repos for each of these projects by pulling them out of SVN using git-svn.
I've successfully pulled the entire SVN re...
Hi,
I'm writing some functions in php using exec() to interrogate a svn.
The commands exec("svn list ".$myurl) works.
Now, I try to get a path on a svn repository with the checkout command.
When I put the command "svn checkout http://core.wordress.org/tags/2.9.2/ last-version" directly in the console, it works.
But when I do this fr...
Hello
I have looked around Stackoverflow and there has been a lot of really useful qustions and comments written about website deployment using SVN. It seems to boil down to whether you use 'export and rsync' or 'checkout and update'.
For a number of reasons, and after quite a bit of research, I have decided to use the latter to deplo...
I made the mistake of creating a Subversion repository without the usual trunk, branches, and tags directories. That is, the root directory of the project maps to the root directory of the repository. Now I want to create a feature branch, but there's no good place to put it. What I'd like to do is move / to /trunk, preserving its proper...
How can I tell if a respository uses BerkeleyDB or FSFS?
...
As per the title of the question, I’m wondering if there’s any mechanism to invoke GetLog with an author parameter. Nothing is jumping out at me in the documentation either for GetLog or SvnLogArgs.
Does anyone have any thoughts on this? Alternative suggestions on how to do this are welcome.
...
I have subversion 1.6.5 client and 1.5.4 server. And I mostly only care about diffs on fully repository paths, not working copies.
When diffing branches, ones that have been merged already show up as identical except for the mergeinfo properties.
This is a touch annoying for a human who has to then look through the changes looking for ...
At my job we develop websites - however now we're going to make a "whitelabelled" version of a site, which basically means it's the same site, however with a different logo and hosted on a different domain.
Also it'll have minor graphical differences, but overall the engine is the same.
My initial thought for keeping this in SVN, was t...
I have a subversion repository with a directory structure:
frontend
backend
+ a
+ b
In a other branch, someone had put the sub-folders a and b in the root directory and delete the other stuff (frontend, backend).
a
b
Now i have to merge this branch back into the trunk (backend-folder). How can I do that to dont lose the history...