Hi all,
I'm trying to move a directory (trunk/project/subproject) from a repository rep_a to a newly created repository rep_b
Following the instructions I've seen in ttp://stackoverflow.com/questions/417726/...,
I did this:
svnadmin dump my_repositories/rep_a > ./rep_a.dump
svndumpfilter include trunk/project/subproject --drop-empty-...
Can I specify the depth of an svn copy? (similar to the --depth argument of a checkout command) I would like to make a copy of all of the files immediately under a folder but not any of the sub-folders.
...
I have been using svn:externals to bring the Zend Framework files into my project. This is what my svn:externals looks like:
-r 22731 http://framework.zend.com/svn/framework/standard/trunk/library/Zend/ Zend
-r 22731 http://framework.zend.com/svn/framework/extras/trunk/library/ZendX/ ZendX
I have it tied to revision 22731 which is th...
Is there a svn subcommand that can tell me what commits I have made during a period or since a certain time?
...
I just setup SVN for my java Android project through SubEclipse. Can anyone advise me on which files I should not upload to the repository? Just like in Objective C I have my build files in a separate folder, I still don't know how the build system in Java organizes files and what is considered "build" files.
Any advice?
...
I have a git clone of a Subversion repository that has the standard trunk/branches/tags layout. I cloned the repository using the --stdlayout option. I created a branch using
git svn branch -m "Creating new branch." mybranch
And then checked it out using
git checkout --track -b mybranch remotes/mybranch
I made a few commits and mer...
I've been reading up on svnsync to create a read-only copy of our repository, but I don't really understand what the point of having a read-only copy of the repository is. If the master goes down for some reason can the read-only copy become read/write so people can commit to it? If not, then what's the point of a read-only copy?
...
I have some guys in my project who will never ever learn SVN, but I want them to use it anyway. So is there an option to make TortoiseSVN just
automatically delete all missing files (that were under verison control but deleted)
automatically add all new files (that are not yet under version control)
I think you can write local client...
How can I setup a webSVN in my hosting server? I want to know the step by step procedure to setup the webSVN.
...
I am using Eclipse Version: 3.3.2
I have imported a project which is on already on SVN repository. I just checked out in wwwroot and then imported into eclipse. Done some changes. Then i was thinking to install subclipse.
opened eclipse plugin manager installed Subclipse 1.2.4.
Then right clicked on project ->Team -> Share Project ->...
I've installed VisualSVN but I can't access it remotely from work. It keeps giving me an errors saying something like error: Repositry moved permanently to https://xxxxxx/svn please relocate
On my VisualSVN app at home, the url is https://xxxxx:8080/svn
I tried https://xxxxxx/svn and it could not find the repository at all whilst the d...
I have a folder which contains a whitelabel-esque system; theres way over 90,000 files in there.
Currently its stored in SVN and we just checkout the sub-folders as required.
Would mercurial or another SCM be able to handle having the lot checked out at once without it dying when you try to commit.
...
Possible Duplicate:
Why is Git better than Subversion?
Hello All,
I am making an application and im currently using subversion, but i want to switch it to git.
Is this right that git is more helpful than subversion.
Which one better for me to use
Also any doc or video help for me.
Please send your valuable thoughts and links...
Hello there stackoverflow,
I have a Google Appengine project.
I've decided to SVN it.
I get an error I've never seen from the Google Appengine:
com.google.appengine.tools.info.LocalVersionFactory getVersion
INFO: Could not find API version from E:\ws\msgServ\war\WEB-INF\lib.svn
java.io.FileNotFoundException: E:\ws\msgServ\war\WEB-INF\...
Hello, when going through revisions I would like to download the last version of a file (That has been deleted in the revision the code is at) Right now I have been trying to export the file at the ((revision number I am at) - 1) however that does not always work. Is there an easy way to do this? Thanks.
Edit: Well after doing some exte...
I have got a Subversion repository, but how can I tell if it really has everything it's supposed to?
The file and folder counts are widely different between the Working Folder and the original folder I used to create the repository, even accounting for the contents of the .svn folder in each repository folder. (assuming they all are th...
when trying ./Build on HP-UX 11.23 to install Alien::SVN, it exits with message:
checking build system type... Invalid configuration `n': machine `n' not recognized
configure: error: /bin/sh build/config.sub n failed
configuring SVN failed at inc/My/SVN/Builder.pm line 108, <STDIN> line 3.
Something went wrong with the Subversion config...
I'm trying to automate svnadmin dump using C# ProcessStartInfo.
The way I've done it on the command line is like so,
svnadmin dump c:\Repositories\hackyhacky > c:\backup\hackyhacky.svn_dump
Works a treat and dumps successfully, and I can verify this by restoring it into another repository like so
svnadmin load c:\Repositories\restore...
I'd like to install wordpress in another directory to the actual DocumentRoot so that I can keep it under version control but at the same time customise my wordpress site.
So I have a directory layout something like this
branches/
tags/
trunk/
index.php
wp-content/ < this is where I will have my customisations
vendors/
wordpress/...
In the early stages of a project when lots of files are being added and the project is being worked on by more than one person concurrently, Xcode project files tend to come into conflict often under source control. Merging those is a pain and often results in lost file references if you're not careful.
Has anyone worked out a tried an...