My trunk has struct:
\trunk
----\data
----\src
----\tool
with \tool is external to another place, not in my trunk. So i don't want user commit to \tool in SVN. They can only commit to \data or \src.
Can anybody help me to create a hook script to prevent user commit to external (in this case is \tool folder).
...
I'm using subversion to host my own repository for a WordPress installation. I've got it set up so that all of the core WordPress files are in their own directory (called wordpress) and set up to use svn:externals to link to the WordPress repository. I then have my own copy of the wp-content directory (located outside of the wordpress di...
We use Subversion locally, and we're working on a project that uses a fork of Fluent NHibernate, which is hosted on Github.
I'd like it set up so that a single svn checkout will retrieve everything necessary to build the project, but maintain the ability to fetch HEAD updates from github.
Is there any way I can pull code from the Git r...
I'd like to evaluate Mercurial for my working projects. But most of my projects very heavily rely on the presence of svn:externals-like support. I've searched over StackOverflow and googled for corresponding support in Mercurial. All I found is subrepo feature added in Mercurial 1.3, but the page for this feature said:
subrepos are a...
I've got a repo setup with 3 projects(1 per folder) and a 4th folder with some supporting DLL code in it. In each of the 3 projects I have setup svn:externals to this supporting DLL folder.
When I try to update any of the main projects I get the message (TortoiseSVN) "External Failed, unreadable path encountered, access denied."
Here...
I'm trying to add something like:
subdir
modules
module1ext
module2ext
module3NOText
other dir not from externals
in which subdir/modules/module{1,2}ext are defined in externals specifically, but not /subdir nor /modules.This basically adds module{1,2}ext to the svn repo, but not subdir and modules.
So, now I want to ...
I first want to say I've read the Subversion manual. I've read this question. I've also read this question. Here's my dilemma.
Let's say I have 3 repositories laid out like this:
DataAccessObject/
branches/
tags/
trunk/
DataAccessObject/
DataAccessObjectTests/
PlanObject/
branches/
tags/
trunk/
PlanObject/
PlanObjectTests/
Win...
Our Subversion repository has several subdirectories containing shared files as well as subdirectories for each project. Projects are set up with relative svn:externals properties to pull in shared directories out of the repository and set them up as subdirectories.
So, for example, our repostory looks something like this:
client
sha...
Hi there,
As part of my deployment scripts I do an svn copy from the trunk to the tags directory, which is in turn exported to our server. In a current project thats in development i'll be using svn externals to reference some files from another project.
Upon deployment i'd like to remove that reference and save a local copy with the ...
I've got a project structure as follows:
ProjFolder\project\
|__init__.py
|main.py
|...
|data\
|settings.dtd
|archs\
|arch1.arc
...
...
I know that people recommend that externals should always point to tags or be pinned to specific revisions (or both for the belts-and-braces brigade!). I'm comfortable with this approach when the external points to a unchanging or slowly changing dependency. However, sometimes I need to take an external on a rapidly changing dependency a...
Hey,
I have a repository for one of my projects that has a nested repository using the svn:externals property to update files from an external library. The problem is that I need to comment out one of the function declarations from one of the headers in this library, and carry around the modified header with the root repository.
Is the...
I am working with pysvn, I want to a folder to repository as an svn:external .
any idea how to do this in pysvn?
...
#! /usr/bin/env/python
# This is a sample project to test subversion with python.
import pysvn
webrepo = pysvn.Client()
prop_name = "svn:externals"
prop_value = 'externalfolder http://subversion/repositories/externals/tags/1.0/'
url_or_path = 'http://subversion.corp.espn.pvt/repositories/project1/trunk/'
revhead = pysvn.Revision( pysvn.o...