svn

Cannot connect to svn server (svnserve)

Hello, I've set up using many tutorials from the web a repository and svnserve on my mac. But I cannot access it from the internet. If I call the following command everything works alright: svn co svn://192.168.1.10 /working_copy/myproject --username me And If I call the following: svn co svn://my_external_ip /working_copy/myprojec...

svn propget svn:ignore . returns nothing, but svn is obviously ignoring my files

I'm trying to add an existing iPhone project to a subversion account on unfuddle.com. Everything seems smooth except for some .a files which are ignored. I know they are ignored because I don't see them in svn status unless I use the --no-ignore flag. When I run svn propget svn:ignore . I get no output. To make sure I wasn't crazy...

version control & code hosting - im lost

i'm working on a small project that might have an additional coder at some point - i've become to used to svn (which i started using very recently, through sourceforge) and want to use it for this project, without having to publish the code on the internet -- which would happen if i were to add it a sourceforge project. I have some host...

Is Unfuddle reliable?

I am in need of an online project management tool that includes SVN hosting as my team of developers are all remote. I stumbled on a site called Unfuddle and have read decent reviews so far. I am very protective of my code and want to make sure I keep it safe from any unwanted eyes. Has anyone used this tool and are there any better opti...

XCode + svn tips, tricks, etc

Hi, I'm curious to know your tips and tricks using XCode and Subversion. Not necessarily only focused on actions that can be done to a svn repo from xcode itself - but what things have you done to make your life easier when working with a svn managed folder that contains an xcode project? What files did you ignore? Any custom built scrip...

How can I remove a file from my svn working copy without deleting it?

I accidentally added a file to my svn working copy that I don't want to check in (a test image). I haven't commited yet, so how do I remove the file from my svn working copy without deleting it? ...

How do you merge a feature branch in a Codeplex project?

I have a project on Codeplex and I use TortoiseSVN to access the source code. I've created a feature branch and now I need to merge changes from the trunk into the feature branch. I'll need to eventually merge the feature branch back into the trunk as well. But it seems that SvnBridge doesn't support merging! Does anyone have suggestio...

Tutorial to get started with (learning) Subversion?

I'm planning to switch from CVS to Subversion (on Windows). Looking for some good tutorials (online or books) to get started. ...

Easiest Subversion installer for Windows 7?

I want to try out Subversion on Windows 7. The repository will be on the same PC I'll be accessing it on (i.e., server and client on same computer) I read a blog entry that suggested that VisualSVNServer was the easiest way to install SVN. Any better suggestions or comments on whether VSVNS is indeed the easiest to install? ...

svn server synchronise automatically

I have a svn server on our lan locally its on windows. The developers use and check in/out from that. Just to be on the safer side we have took up a server from rackspace a linux one. Is it possible to do an automatic weekly synchronise from the local svn server to the remote one. The remote one will be mainly used as a remote backup but...

Auto update and build with eclipse and SVN

hi, every morning when i come to work i update my sources from the svn and build it. this process takes roughly 15 min. my question is whether it is possible to do it automatically, scheduling it... i am working with XP and eclipse. ...

How to mask delete on files in Subversion

Hi, i am trying to setup a Subversion repository with Apache httpd, everything looks good so far. But there is one major bottleneck i am facing. The access rights to files is plane and painful. For any valid user to get and commit file we need to have rw access. And there is no provision to mask the delete option on files. Any user who h...

How to properly set up svn on web server?

I have found this question but it was never resolved and don't want to hijack it for myself. I'll try and give as many details as possible. I have a shared hosting account on a linux server which is my web server and I have shell access. I'm working from a windows machine using tortoise svn. I have several web sites in my public_html/...

Subversion command scripts

i have this command "TortoiseProc.exe" /command:update /path:"D:\Work_SVN\projectname"/notempfile to update working copy. I also have 'svn st -u' to check for modifications from repository. How to use this command in above syntax. Bibhu ...

Where are my svn files?

I have created an svn repo on my web host server and successfully commit files to it and updated files from it but I can't seem to actually find the files on the server! My svn repo is in ~/svn/my-first-repo/ which contains the following: ./ ../ README.txt conf/ db/ format hooks/ locks/. But where are the files I'm actually vers...

Codeplex MonoDevelop

Does MonoDevelop work with Microsoft's CodePlex using SVN? ...

Automatically export contents of svn repository to another directory?

First, I would like to clarify a quick question I have, am I right in thinking that files in svn repo don't actually exist in the heirarchical structure you see when you check them out? I have tried to use svn export ~/svn/project1 ~/public_html/project1 but it didn't work. What I actually want is to have the export command automatical...

find all subversion working copies on machine

How could I use find unix utility to find all working copies on the machine? For example, I can use find / -name .svn -type d command, but it outputs all redundant results (a lot of subfolders), while I need only parent directory of working copy to be shown. There is related question, but it does not really help in my case: http://stac...

Subversion Problem on Mac OS X

This exists in my httpd.conf file: <Location /svn> DAV svn SVNParentPath /Users/iirp/Sites/svn Allow from all #AuthType Basic #AuthName "Subversion repository" #AuthUserFile /Users/iirp/Sites/svn-auth-file #Require valid-user </Location> This is working file When I change this to: <Location /svn> DAV svn...

Update git-svn list of remote branches

When I have to use svn, I use git-svn to talk to svn. I cloned the repo with the standard git svn clone -s line, and all the remote branches at the time were there. Since then, a new branch has been created, but not by me. I want to checkout/track this branch locally. I can track a branch that I can see (with git branch -r) like so: gi...