Hi all,
I have configured svn server in my system and have made following configuration for authenticating users with SASL MD5. I have made following changes in the svnserve.conf
[general]
anon-access = none
auth-access = write
password-db = passwd
authz-db = authz
realm = my_first_repository
[SASL]
use-sasl = true
min-encryp...
First this is all done on Mac OS X, ver 10.6.4
I copied a file tree, which included some java code that had been checked out of subversion. I wanted to delete all the .svn files in that tree. So I used the following command:
find . -name .svn -exec rm -fr .svn {} \;
And I got messages like this:
rm: ./repository/entity/.svn: Direct...
I want to setup my own SVN server on a dedicated plan over at MediaTemple. This would help me immensely when updating / checking out code with the staff I work with in India. I can't find anything good on the web, and I'm sure someone here knows what to do. How can I set up a SVN server on my dedicated so I can create multiple repositori...
I've just pushed my first repo to github but when I browse my html it is served as txt. Is this something that I can set similar to svn's props? Or is this simply a github inadequacy?
I can't seem to find anything on git, github or here that helps.
...
I recently just installed Eclipse onto a Ubuntu 10.04 machine.
Now, I'm reading "Getting Started" instructions for a project I want to contribute with and they state the following:
Using Eclipse Galileo for Java part:
File -> New -> Other
SVN -> Checkout projects from SVN
Create a new repository location http://marioai.googlecode....
When I run my site locally, I have my connection class pointed to local IPs for the database and what not.
How do I prevent overwriting my connection class on the live site when I commit?
Every time I commit, it makes my live site point to my local version. How can I avoid this?
...
Hi all,
I'm using sharpsvn dlls for .NET. I'm new to using subversion, and I'd like my repository to be on a filesystem and not on a remote server.
Is it possible to use sharpsvn like this? I mean, have it checking out from c:\somewhere to c:\somewhere-else?
...
Hello,
Here is my problem:
My server crashed last night! So i had to go out and buy some new stuff and i now have a new server. I have everything set back up and i am trying to set my svn server back up. I have it set back up. I have my files on another pc that i want to commit to the svn server to start my repository back up. How do i...
Hi,
I checked out tomcat 6 from http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk which unfortunatly I put as the repository location in subclipse.
It appears that I should have used a parent http://svn.apache.org/repos/asf/tomcat so I can compare tomcat 6 and tomcat 7 code.
I can't disconnect this location as the project (with cha...
Hi all,
I'm trying to copy a used repository by using svnsync (I'm doing it this way in order to ensure optimal usage of my repository as long as its machine is working) but it does not seems to work.
I have two machines (I've changed the names, but not the other infos)
INITIAL : custom Linux with Subversion 1.4.5 (r25188) (as reporte...
Hi all,
Can someone enlighten me on this...
When i uncomment /etc/subversion/config store-auth-creds = no, and when i create a new repos, i was prompted the following...
svnadmin: /etc/subversion/config:37: Option Expected
I understand that that 37 is pointing to the "store-auth-creds = no" option but what option does svnadmin expect...
Hi,
I'm using svn for the first time, to maintain a custom version of Wordpress. I'm using the subclipse plugin in eclipse. The time has come to merge the changes in the latest release of Wordpress with my customised code base.
I have tried creating a branch and adding the new Wordpress release there, then performing a merge. No changes ...
Does such a thing exist in subversion?
In perforce we used to have to do this quite often especially when Perforce got the incremental update wrong - It does not seem possible in Subversion
Is an alternative to delete the .svn file and do an update?
...
I've got a particular situation where I need to remove the operations of a series of commits in Subversion repository. Entire contents of (/trunk /tags /branches) were tagged and subsequently removed when the mistake was realized. I would simply use svndumpfilter to remove the offending nodes, but someone re-used the bad tag name at a la...
my goal is to have a CMS that is totally self-contained like a flat-file CMS but still having database features. Am I correct that if I have a CMS based on sqllite that I can use SVN to copy it along with all my other code? Isn't that the kind of database sqllite is, just one file?
Thanks.
...
Our SCM is Subversion. And I don't know how to handle this scenario.
Let's say the I have these branches:
DEVELOPMENT (trunk)
QA
PRODUCTION
In the trunk we have the following features (F):
F1
F2
F3
F1 and F2 are ready to be tested on the QA environment so the changes corresponding to those features get merged into the QA branch....
Im desperately trying to remove subversion bindings in my netbeans project but I cant work out how to.
I've tried to copy the files to another directory but the original svn bindings stays intact from the original source. Its hopelessly annoying!
Please help!
Thanks!
...
Hi,
I would like to use SVN with component development.
What I managed to do so far.
Instalated subversion on my VPS
created svn directory
check that works
and I stuck I'm not sure how to create project from command line?
I have svn in /var/svn
how to handle two directories? components/com_my and administrator/com.......
How can I delete all files that are being ignored within a Subversion checkout? Effectively to bring it back to the equivalent of a pristine checkout.
...
Hi,
following standard practice, I have an svn trunk for feature development, and a forked-off branch for building releases. The branch has been created using the maven release plugin, which is also used for creating releases. As it happens, the occasional bug will be fixed on the branch, and those changes need to be merged back into the...