svn

Subversion commits hangs with some Visual Studio files

I'm having trouble committing some files in a Visual Studio 2010 solution, but not others. I have created a basic console application with nothing but the default files. When I try to commit some of the files (e.g. module1.vb) it commits fine. However, when I try to commit other files (e.g. consoleapplication1.sln), it shows it being a...

Is it possible to run SVN server on LAMP? (e.g. GoDaddy shared hosting account)

I have a shared-hosting account at GoDaddy, which includes LAMP (Linux, Apache HTTP Server, MySQL, and PHP). I really like SVN as my source control, and I thought "hey, maybe it's possible to have my own SVN server hosted in my GoDaddy account!" So, is it possible? Is there a "bridge" that enables SVN on LAMP? ...

I have two eclipse projects on a SVN repository. How should I combine them into one?

I have two eclipse projects on an SVN repository that I feel should be merged into one. The easiest way that I can think of doing this is to copy the contents of both projects into a new local project, commit it, and nuke the old ones. Is there a better, SVN-ish way of doing things? I'm using the Eclipse Subversive plugin, for what it...

What does this svn2git error mean?

I am trying to import my repository from svn to git using svn2git, but it seems like it's failing when it hits a branch. What's the problem? Found possible branch point: https://s.aaa.com/repo/trunk/project => https://s.aaa.com/repo/branches/project-beta1.0, 128 Use of uninitialized value in substitution (s///) at /opt/local/libexec/git...

How to tell Subversion to display binary files using an external program?

I have some code which, like java, is stored in a binary format, and I have the applications to display and modify this code setup in the Subversion's config file. But when I run svn diff for these file, Subversion prevents me =================================================================== Cannot display: file marked as a binary ty...

Subversion (20014)Internal error: database is locked on NFS

i have subversion setup using apache and DAV. OS is RHEL 4. Repository is created on NFS server mounted on this machine. when i try to access this repository i get following error in apache logs (20014)Internal error: database is locked Could not fetch resource information. [500, #0] Could not open the requested SVN filesystem [500,...

SVN correct directory structure

I followed this tutorial to setup SVN on my Fedora box http://www.ashishkulkarni.com/installing-subversion-on-fedora-linux/ It worked. However, there is no trunk, tags or branches when I set this up. In the tutorial he creates a sandbox project /svn/repos/sandbox Now I am assuming that all projects will go under repos /svn/...

How do you upload your project to google project hosting from Netbeans?

Can someone tell me how I can upload my project to google project hosting using Netbeans? ...

2nd Year College - Learning - Microsoft Server Products

As the title says, I just finished my first year of college (majoring in Software Engineering). Fortunately my school likes Microsoft enough, and I can get pretty much anything I want that Microsoft sells. I also can get IBM Websphere and the like for free as well. Earlier this year, I set up an oldish computer (2.6 Pentium D, x64) to...

Is there a way to ask Hudson to skip the scm poll during a build?

I have configured a job in hudson that's linked to an SCM, is there a way for me to get hudson to not poll the scm before starting the build? I'd like to ideally not have to create a separate job for this. Thanks! Dinesh. ...

Still not understanding SVN Repositories in eclipse

I am about to import my project into svn but don't want to stuff it up. My structure is like this: Repositories: /var/svn/client_name1/ /var/svn/client_name2/ Project directories under /var/svn/client_name1/ project1/ trunk/ branches/ ...

Can a single solution hold projects from multiple repositories?

I've begun setting up SVN repositories to store my code, and am wondering if a single Visual Studio solution can have projects from multiple repositories. I have a shared library with different helper functions, generic custom controls, etc, that are used by multiple projects, and hosted in its own repository. Then I have my project repo...

Can I do SVN over SSH without svnserve?

Hi, Is it possible to use SVN over SSH without using svnserve, and just the one from Tigris? Thanks, tesmar ...

How change Subversion's default binary mime-type?

Subversion sets a binary file's svn:mime-type property to application/octet-stream by default. I need to change this default to some other mime-type. When I import for the first time this code, I would like Subversion to set mime-type to the one I choose. The reason is that my code base contains code in binary files (proprietary forma...

Subversion Question - How to skip a revision...

So say I have the three latest revisions of an aspx file: 55,56, and 57. Revision 56 added a feature that I want to remove, but I also want to have the new features deployed in version 57. Is there any way I can merge version 55 with 57, leaving revision 56 out of the picture? If it matters, I'm using Tortoise SVN and Visual SVN, but I...

Subversion for web designer: repository on a network share and ftp to the live server?

My configuration: htdocs on a windows network share (z:) web developers check out with dreamweaver modify and check in back to the drive z LAMP running on a Ubuntu server virtualized on Hyper-V with apache that point on the z drive for dev in order to test the websites Upload by FTP on the live server Now: I need multiple access to ...

migrating svn to another server

what I have read and done was create a dump, create a new svn, then load the file. The dump was 600 megs. Why do a dump/create/load instead of just zipping up the folder and placing where i need it to go? It seems the zip would've been smaller and faster to move and migrate as opposed to the dump method. Let me know what is considered...

"Attempted to lock an already-locked dir" using SVNANT

I'm using SVNANT for checking out my project directory on my Windows XP machine. The first time I've used tortoiseSVN for the check out.. as result I obtained an error message relative to the incompatible versions so I had to fix it using a downgrade script. Now,I can't use tortoiseSVN for any operation on my project folder because of th...

After mounting using sshfs I cannot commit my changes using subversion

Hello, local machine: Fedora 13 Subversion: 1.6.9 remote machine: CentSO 5.3 subversion 1.4.2 I have a project which is on the remote machine: [email protected]:projects/ssd1 I have mounted this on my local machine: sshfs [email protected]:projects/ssd1 /home/jbloggs/projects/mnt/ssd1 Everything mounts ok. So I open my project using...

svn:externals a sub-folder of a git project

Hi, is there a way to get only a part (ex: a sub-folder called /library) of a github.com project and use it in svn:externals? What I'm doing now is $svn pe svn:externals . SomeLibrary http://svn.github.com/myuser/myproject.git But I don't want everything from the project... I need something like: $svn pe svn:externals . SomeLi...