svn

Zend Studio 6.0 or 7.1 svn export only files from a revision number

I am trying to export files from Zend Studio's "SVN Repositories" perspective that belong to a revision number, but the studio exports all the files form other revision number as well. Maybe this is because the target directory is empty. Can anyone help me on how to export files from one revision number only, not all? ...

Checking-in JAR files (libraries) into Version Control tool - Is it a good practice?

I'm developing a web application in Java and I'm using several third party JAR files in my lib folder. I also have Subversion as my version control tool. My question is, while checking in my project files, should I check-in the JAR files also or is it not needed to version the JAR files as I'm not modifying them anyway? ...

How do I commit two changes to the same file separately in Tortoise SVN?

Consider a situation: I've made multiple changes to one versioned file and want to commit the changes. Now I realise that they'd better be committed as two separate commits - so that some changes belong to one changeset and others - to another. How can I do that most efficiently? ...

How to create a patch in IntelliJ IDEA?

I've been using IntelliJ IDEA 9.0 Community Edition for some time after years living in Eclipse. One thing seems to be hard to find in it. I'd like to create a patch on some subfolder in my project. In Eclipse it is done using right click, Team, Create Patch. Does anybody know how to do that in IDEA? ...

how to check which file/dir is missing in a partial subversion checkout

Hello, when I run "svnversion -c", I found that this is a partial checkout dir, but how to check which dir is missing? (without a re-checkout) $ svnversion -c 49516:56223P thanks. ...

Problem keeping branch in sync

I have created a branch like this svn copy svn+ssh://foo.bar/svn/myproject/trunk svn+ssh://foo.bar/svn/myproject/branches/feature-x I then proceeded to checkout a working copy of my branch in another directory. Since this is a feature branch, I would like to keep it in sync with trunk. According to The SVN Book, this should be as sim...

How can I integrate svn with the Visual studio 2008 ?

How can I integrate svn with the Visual studio 2008 ? which is the better svn plugin/client for the visual studio ? ...

Deployment solution automatic compile

At the moment I use SVN to manage java source code. Is there a solution out there whereby I can check in code and have the new code automatically compiled into a JAR file? Somehow the check in would need to trigger the compile process. ...

Exclude TortoiseSVN's ignore-on-commit files from svn diff

$svn diff > patchfile creates a nice patchfile. However, using TortoiseSVN under Windows I've set some files as being "ignored-on-commit", that is, it is under version control but doesn't get selected, when i do a commit. TortoiseSVN seemingly handles this via a custom entry in .svn/entries for this file. Note, that it it isn't a norm...

git svn rebase problem on windows

Hello, I have a problem with git. Basically, here is what I have. I access a svn repository through git. Until now, on python files, everything worked fine. But lately I also added some pyd, dll and lib files on the repository. THe first update went well. But then, these files have been modified and since then I can't update. These fil...

TortoiseSVN: What is head revision

I'm a VSS user learning how to use SVN, and I have selected TortoiseSVN as my platform. Can someone tell me what the term "HEAD Revision" means? ...

Magento & Subversion (SVN) - Getting a Development Environment Started?

Hello all, I'm working on building a Magento site, and it's by far the most mammoth package I've ever worked with. I've decided to set up a proper development server and use Subversion for version control. I'm running in to a couple roadblocks and need some help. What I've done so far: Set up web hosting on a host that uses cPanel. M...

Subversion public free repository for documentation and config files

I've been through all of the questions about free online subversion repositories, but haven't found exactly what I'm looking for. I would like to upload some config files, small scripts, and make it a public SVN repository. I would like a simple service, with just a Subversion public repository and one person to commit. No Trac, no pro...

SVN update after custom patch

I have this scenario. I checked out a code for one project from a public official SVN repository. Then I applied a custom patch from another source which changed quite a few files. Now and then official repository gets updates since active developers are committing code there. In order to keep up to date with them I do SVN update. My q...

How to benefit from SVN in web development

Hi! I am managing the development of currently two different web applications of which one will roll out in beta testing before sunday. I have some previous experience from SVN usage, after playing around a few hours with TortoiseSVN locally on a XP machine, but I never really got the hang out of it to be honest. However, it feels lik...

database schema revision control in php based webapp

We have a php/mysql based application which has slightly different instances for a number of customers. Also we have more than one developer working on the code base. What is a good way to manage changes to the database schema in this scenario? Should we require developers to write a small script when a DB change is needed? I'm think...

SVN - Manage a partial merge of a revision

Hello, So I have an issue that is causing me a lot of grief in Subverion. I am working in a branch that is supposed to remain active until my feature set is development complete before re-integrating. Unfortunately, something I have completed has now been deemed by the business to be 'mission critical' and they want me to cherry pick ...

SVN Server Security Scanning Tool

We plan to migrate our SVN server from LAN to Internet. We need to convince our management, that our setup is secure enough. Is there any SVN server security scanning tool, to check on the security level of our SVN server? Thanks. We are using Windows. ...

Rename local folder with svn working copy without clean checkout

Problem: If I rename/move folder with Subversion working copy to another location in file system, svn will complain that it "is not a working copy" anymore. One has to do clean checkout to fix that. Reason: We have some projects with about 1GB after svn export each + branches. It takes too much time to do clean checkout even over LAN (s...

Automatically create subversion revision file

I have a project who's structure in Subversion goes as follows, branch tags trunk -- Library ---- Library Code -- Website ---- Website Code The Library folder contains most of the project code and is a class library. The Website folder is a website project which uses the library. The website is what gets deployed to the live site. I ...