Subversion's svn import command allows repeatedly importing an external directory tree into source control. It's also important to note the original directory tree is not modified, ie it does not become a checkout/working directory.
What is the equivalent in TFS 2010 (Team Foundation Server), using the command line?
...
            
           
          
            
            How i can find out which is the latest revision number in the repository?
...
            
           
          
            
            I'd like to run a command to execute a subversion command from the TFS custom activity. Should I create a msbuild script to exec the svn command and call msbuild from the activity?
Thanks. Anyone?
...
            
           
          
            
            I have a pair of svn repositories which are significantly larger than others. They're not too big for svn, but they're taking a lot of disk space I'd rather be using for something else.
What strategies are available for reducing the disk use of svn repositories? I tried the "removing dead transactions" section described here but that di...
            
           
          
            
            Hi there,
I'm looking to create a directory using SVN ANT, but only so if the directory does not already exist (using the mkdir nested task with SVN ANT appears to fail if you specify a directory that already exists).
Is there a isExists flag or something of that ilk that I can use here?  Or something else I can use to detect existing ...
            
           
          
            
            One of my web apps has grown over the past few months from a single project file to include several class libraries. The svn structure has sort of grown organically and looks something like this:
repository-root
    site1
        trunk
        tags
    site2
        trunk
        tags
    library1
        trunk   
        tags
       ...
            
           
          
            
            I want tkdiff (or something like it) to display my 'svn diff' so that I can switch files in the tkdiff interface itself.
(I'm using a mac.)
...
            
           
          
            
            I don't how to frame the title for this question. If not appropriate please apologies.
Say for example. 
Previously, we had the svn structure something like below:
Product A
    Product A - Base
    Product A - Samples
    Product A - Tests
    Product A - Sub controls
Product B
    Product B - Base
    Product B - Samples
    Product...
            
           
          
            
            I have an application running on my server which currently is not using any version control.  I would like to start using Subversion version control and have signed up for a hosted Subversion Repository. 
My question is, how do I populate my hosted Subversion repository?  Do I need to install Subversion on my server as well as having th...
            
           
          
            
            I'm setting up an Apache+SVN server for work. I can checkout a repository, but when I run the svn list command I get the following error "OPTIONS of 'https://server': 200 OK (https://server)"
Here is my subversion.conf
 <Location /svn/>
   DAV svn
   SVNParentPath /svn/repos/
   # Require SSL connection for password protection.
   SSL...
            
           
          
            
            I have a working copy of a repository on my machine, and I know that it has been updated on the server. I would like to know how to get the difference between the new version and the version in my working copy by using svn command line arguments.
Is there a way for me to do this?
...
            
           
          
            
            Dear stackers, 
I did a merge between the trunk and a branch.
On the trunk, there is a folder, let's say templates/Toto.
On the branch, everything but the folder Toto is there (not a local delete, Toto is simply not in the repo).
After I performed the merge (I tried several times), I always end up with a freaking tree conflict "local ...
            
           
          
            
            ###CLOSED: It was server issue.
Hello,
I have problem with commiting from my development env (Eclipse Helios + Subversive 0.7.9 + SVNKit 1.3.2) to my svn+ssh repository. After commiting files I eclipse dialog window ("Operation failed") appears with information "Commit operation failed   2 errors occured during the operation execution....
            
           
          
            
            I get the following error, if I try to rename my class:
  Error During Rename
  
  Error: 155007 (Path is not a working copy directory) Description: Path 'xxx/Classes/MyClass.h' is not a directory
The renaming looks like this:
MyClass.h -> MYClass.h
Perhaps that is the problem?
I've made an initial import to my SVN directory. This ...
            
           
          
            
            I know of codeswarm and gource, but AFAIK they visualize the reopsitory on a class level.
 What i would like to see animated is the history of a single file (or a package) - LOC count is essential, LOComment, dependencies, method count a.s.o. would sure be nice too :)
...
            
           
          
            
            Hi,
I want to ask if somebody heard about a SVN monitoring tool for this case: in the past we used MS SourceSafe with checkout & lock mechanism to avoid merges. One benefit of this was the "release manager" can see in the repo whitch files are still not checked in. SVN is a great tool, but sometimes I miss this information, even to avoi...
            
           
          
            
            What I would like to do is point the webroot from my dev webserver to some dir that is in some way linked to svn so when I commit changes they will be automatically visible on my dev webserver.
Any clue how I can do this?
EDIT
i'm creating a django project so i'm justing the Django development server
...
            
           
          
            
            With CMake I can get the svn revision using Subversion_WC_INFO.  However, this only happens at configure time-- every subsequent make will use this cached revision.
I'd like to get the svn revision at build time (ie, every time make is run).  How can I do this?
...
            
           
          
            
            Our project is a content management system supporting several dozen of our websites.  The development group started off small and in one location, and we dealt with a fairly standard coding/deployment strategy.
We coded off of trunk and insisted on a clean trunk.  Every few days we would tag trunk and deploy to the test server.  If all ...
            
           
          
            
            I have created an Eclipse project with a number of referenced jar files. I use a variable to specify the local folder of the jar files. However when I check out this project to another machine Eclipse does not organize the referenced files under a "Referenced Libraries" pin. Instead it just lists all of the files.
Any ideas why this hap...