svn

Never-ending GIT story - what am I doing wrong here?

I'd like to get a local GIT repository in sync with both a remote GIT and an SVN repository. The steps I'm executing are the following: > git push Everything up-to-date > git pull Already up-to-date. Alright, my remote GIT repos seems to be fine so far. > git svn rebase First, rewinding head to replay your work on top of it... Apply...

Continuous Integration and Database Management

When working on a project with several other people it's common to have several people with differente areas, such as the database. My challenge is how to let several people edit the database model in a continuous integration environment. A developer has suggested writing a "versioning script" where each edit was entered into a .sql ...

SVN checkout into IDEs project folder

Hi, (I'm working with SmartSVN and Visual SVN Server) I need to check out a project from subversion to the project-directory of an IDE. the IDE can't open projects from anywhere (eg directly from the working copy) it only sees the projects in its projects folder. I can't use the IDEs project folder directly as working copy directory, ...

Cruisecontrol hangs when checking SVN for modifications

Since migrating a Cruisecontrol build server to a new machine, it sometimes hangs during the "modificationset" stage of the build cycle (it is configured to check for modifications every 15 minutes). Cruisecontrol itself stays responsive, only the build does not progress. There is no significant load on the CPU when this happens, and I...

Using TortoiseSVN via command line

Hello I want to use commandline svn options. I use TortoiseSVN and I run several commands and I get the following error: 'svn' is not recognized as an internal or external command I used the command svn checkout [-N] [--ignore-externals] [-r rev] URL PATH I think I should add some environment variable or something else. Any id...

How to add a parent directory to SVN?

Say I have a directory structure like this dir1 dir2 dir3 dir2is already under version control, whereas dir1 is not. Now I realize that I would like to have dir1 under version control as well (and maybe later on dir3 etc.) How can I do this and reflect the changes correctly in the repository? If I just move dir2 out of dir1, a...

Automating Subversion with C#

I'm designing a document library, and I'd like to use Subversion as the version control system. How can I automate tasks like check-in, check-out and diff from C#? Does Tortoise perhaps offer some help with this? TIA. ...

Getting SVN repository rev number

Is there some svn or svnadmin command that will display the revision of a local repo? I'd like to be able to have a Windows batch or PowerShell script that would let me zip up the repo and name it with the rev to email. The best I can figure out is just to find the highest file in [reporoot]\db\revs\0, but it seems kind of clunky and I...

Tried redmine and trac, but none of them allows me to share milestones and bugs between projects

Do you know a good alternative to redmine or trac which allows such a feature? I've also tried fogbugz, but is too poorly integrated with the svn repository browsing (and there is no sign of code review support). ...

How to know who checked out the repository in SVN

Is it possible to know which users checked out a repository of an SVN Server? Thanks ...

Mercurial repository layout for multiple branches

I have a number of quasi-related projects that I want to version control. In SVN I would set them up as multiple directories within a single project /scripts #updates in sync with project1 & project2 /project1 #requires database /project2 #requires database /database Naturally other SVN layouts are possible for this toy example, but ...

[SVN]: Subversion vs. GIT vs. other open source SVNs.

Being a .NET developer, I used Visual SourceSafe that comes bundled with Visual Studio. From quite some time I am working on technologies other than .NET, and started using TortoiseSVN. I am a beginner in this area of open source SVNs. I have few queries regarding this: (1) Which one is better, Subversion or GIT? I want to use on Window...

TeamCity & Subversion: Checkout copies ALL tags to buildagent's checkout directory

We have the following URL: URL: https://dev-01:8555/svn/Shop We have the following structure in SubVersion Shop --trunk --branches --tags The problem is, when I do a build, under the buildagent directory, I get every single tag in the repository copied over to the buildagent. Is there a way to only retrieve the HEAD revision to effec...

Can Microsoft Search Server index a Subversion repository

Our development team is moving to subverison and we would like to index the content on it. Currently we use Visual Source Safe and keep the latest source on a shared drive for indexing. We are also just starting to use Microsoft Search Server 2008 and as Subverison exposes a web interface we wanted to try and index it using the Search...

How to tell if someone has downloaded the latest code

Is there a way I can tell (other than in the SVN Log...because it only shows me if someone committed) who has updated recently so that I know they have downloaded my code? I'm looking specifically into updates (not commits which can obviously be seen in SVN Log). ...

Code Review Tool Integrated with Gemini

Has anyone come across a code review tool that integrates with Countersoft's Gemini? I don't need anything too sophisticated. We have a relatively small development team of 10. I'm not looking for yet another web app to log into, I'd like to assign code reviews tasks using Gemini (similar to the FogBugz/Kiln). We are currently using SVN...

SVN: How to get the first revision of a file?

When working with a subdirectory in a repository, how to find the revision when that specific directory has been added to the repository? By using "svn info http://.." I can find out when it was modified for the last time ("Last Changed Rev"), but I also need to find out the revision number of the commit when that directory (or file) was...

SVN users set-up

Hi, I've recently set up a SVN to work on my collaborative university homework with my colleague. It's actually working that way : root /class1    /tp1       /trunk    /tp2       /trunk /class2    /tp1       /trunk Currently, there is only the "test" user that have access to the svn over ssh. I would like to know if I can set-up diffe...

How do I remove a file from svn versioning without deleting it from every working copy?

My situation is that a bunch of files are checked into svn which are very annoying to have under source control (specifically a log4j.properties file), and I would like to remove them from version control. I already know how to remove a file from svn version control in my own local working copy, as in this question and this one, but tha...

SVN: Is it possible to get the list of revision numbers for given path?

I am making a PHP tool that connects to a repository, downloads the list of commits and stores them locally. However, due to the possibility that certain repositories are HUGE and grabbing their log results in long waiting time and possible time-outs/errors, I would like to download each commit message using async requests. So, I have a...