Re: Howto Disable Localistation?
> I have a question: Is it possible to disable the localization? > > As a developer I prefer the english texts but unfortunately svn translate > everything to the language of my OS. did you try setting up the LANG variable to en_US ? BTW, which OS are you using ?
Re: svn Farm
> I need to provide svn service to many small groups of students. > I'am looking for a tool that would help industrialize managment of > repositories. > I don't want to issue hundreds of "svn create", "vi authz" , edit ssh keys > for svn+ssh access etc ... > Are there such tools already existing ? Subversion Edge(http://www.open.collab.net/go/csvne2_r2a/) might fit your bill.
Re: Why doesn't 'svnadmin create' creates tags, branches, trunk?
You can achieve the same by having a svnadmin alias in linux and a wrapper batch in windows.
Re: some confusion about subversion
> I am just new to subversion and encountered some confusion. > I have set up a svn server on my ubuntu/linux. > After creating an account called "test" under /var/svn(using svnadmin create > /var/svn/test), I checked out the repository under "/home" directory. > And all these went smoothly until when I tried to add some new files to the > repository > When I added some files using "svn add filename" and checked the files in > the repository(/var/svn/test), I didn't find any filename that matched the > files I have just added. > So I wonder where my uploaded file goes. Hi, Svn add is local operation in your working copy. you have to do 'svn ci' to update the repo with your changes.
Re: Best way to copy project from one server to another, and then back
> Just looking for anyone who may have a better way to do it, as the amount of > files that are changing, could become large, not huge, but big enough to > cause me to want to do it in a more automated fashion. you should be able to achieve this by using git-svn or svk to create a local copy. Make the commits into the local version and port those multiple commits to sourceforge once the announcement is made.
Re: Checked Out CGI not served by Apache
> The permissions of the files appear to be fine as they match the permissions > and ownerships of the manually created files. Are you sure the ownership is also the same ?