I'm guessing it allows you to "save" a merge process so I could create a patch for some Open Source project, and submit a patch so they don't have to handle the merge themselves?
When and how would you use patches in SVN?
...
I can't figure out how to create public / private keys for other users on my server. On my server, I type the following through the shell
(uiserver):john:> ssh-keygen -t dsa
After that, I enter the filenames and password, which successfully results in a private key and public key pair for "john". Now when I use this key to ssh into ...
It is good practice to remove old code instead of just commenting it out. It is often claimed that the old code parts can always be found again in the old SVN repository revision, if needed.
But practically, it's not that easy, right? If the old code is in some unknown old SVN revision then it can be quite hard to find.
I'm exactly in...
Having read Setting up Subversion on Windows I am trying to figure out how to run multiple SVN services on one machine.
When I create more then one service using
sc create svnP1 ... binpath= "svnserve.exe --service -r c:\svn\repositories\project1"
sc create svnP2 ... binpath= "svnserve.exe --service -r c:\svn\repositories\project2"
...
Hi,
I am using SVN to manage a copy of my web site. The site runs a typo3 installation, which uses PHP to create the backend.
The problem is, all the stupid .SVN folders show up in the directory listing of PHP. I DO NOT mean the build in apache listing. I mean a directoy listing created by the PHP backend.
So, is there any way to hide ...
I have a Problem with PHP and SVN. See here...
Using FUSE would be one option, but after a first look, it seems very complicated.
Is there any option to prevent an NTFS filesystem, WIN2003Server, to hide directories completely from a useraccount (I can setup apache to run under this account).
It is not as easy as it seems, given the f...
At my place of work, we use SVN and TortoiseSVN (Windows XP) as a client. I have a longish commute and work offline during that.
Now, I'd like to have some sort of "extended undo" locally; i.e. I would like to have local version control of my SVN working copy, in order to dare to refactor for example.
Switching altogether to e.g. git, me...
I need a version control system that works like Subversion but is able to keep the 'modified' timestamp (date) of each file.
We need to version our setup projects. In this case it is imporatant that the input files (dll/exe's) keep their timestamp.
What is the best tool to do this? (OS: Windows)
Updated:
Here's an example of what I ...
I am working on an ASP.NET MVC web application, and am working on the Web Setup portion. We are using SVN for version control. One of the issues is that the we are currently having is that the web designers modify and add a lot of html, css and js files that end up in the Content folders, but they don't add them to the VS project, so the...
I'm trying to use CruiseControl 2.7.3, (the original), to build a Java project that is in an SVN repository.
My cruise configuration is using the svn plugin for the modification set. When a modification is detected, a build is scheduled using Ant. That Ant build file then uses the svnant Ant Task to do a complete checkout of the pro...
I think the title sums it up. I just want to know why one or the other is better for continous integration builds of Java projects from Svn.
...
When I checkout my SVN repository using the command line
TortoiseProc /command:checkout /path:"C:/Sandbox/SPB" /url:"https://svn.digipen.edu/users/sbentley" /closeonend:3
I can access all the files within it just fine. However, this prompts me for the checkout, which I don't want. Per the manual page on automation:
Remember that ...
Is it possible to use same working copy and to put the same into two different SVN servers(commit, update,...)?
...
I'm using git-svn with a couple of work projects and I've noticed that for just about every action I take, I get prompted for my Svn password. For some actions, I get prompted multiple times (presumably b/c there are several actions going on behind the scenes). For example, when cloning a repository, I'm prompted 5 times before the cloni...
We are having problems in a project that uses Entity Framework and subversion.
Every time someone tries to merge a edmx-file the file is corrupt. We have put a svn:needs-lock property, however this means that no one can edit the file locally.
See this post.
We need to be able to edit the file locally during development and then apply c...
Hi
I have CruiseControl.NET setup with SVN source control.
I have all my projects working perfectly, builing and deploying to my different staging environments.
However, CC.NET automatically starts building whenever a commit is made to the project in SVN. We want to build on demand, not automatically all the time, because all our buil...
I work in a team of 2 developers and currently we use VSS and have no continuous integration or daily build and few Unit tests.
I'm looking to change our source control to Subversion and at the same time get up and running with a more professional process.
Subversion/cruise control/nant/nunit appears quite a popular combination from wh...
We use SVN at work (ie. this is not an open-source project) and have an off-shore team working in our code. I'd love to be able to communicate better with them and the commenting system provided by GitHub would be perfect.
With GitHub's system I can start a discussion on any line of code in a commit.
So, my question: does anyone know ...
I am inside a directory in svn, I want to tell something another developer about a file there over chat.
Is there an easy command to obtain the full URL to that file - let's say something he can send as a parameter to svn export or something like that.
...
I've deployed trac using apache/mod_wsgi (no SSL) (preferable, since the
problem I'm facing with CGI is performance), and it works fine WITHOUT SVN
integration. But I actually need SVN, so when I configure the repository
path (i.e: repository_dir = c:/projects/svn/my_project) I can't even get my
project TRAC to even open any of its pages...