svn-externals

SVN - Committing externals on commit of main trunk

你。 提交于 2019-12-11 11:48:59
问题 Short and sweet: I have one project with an external, which allows me to commit changes to files in that external alongside changes to the main trunk in one operation: I have another project with an external, which does not allow me to commit changes alongside the main trunk: The most obvious difference is that the second external is checked out to a compound directory, but other than that I cannot find a difference that would, to miy mind, be preventing SVN from committing everything

How to do a “svn copy without externals” ?

僤鯓⒐⒋嵵緔 提交于 2019-12-11 10:01:39
问题 I have a branch A with externals I need to copy the content (without the externals) to a tag B. How to proceed ? I tried, svn copy A B --ignore-externals It did not work. Please note that A and B are complete https paths. 回答1: You are misunderstanding what --ignore-externals is for on the copy subcommand. This flag only affects working-copy operations. When you copy one working-copy path to another, it prevents svn from processing all the svn:externals properties on copied items to check out

can we set svn:external for a single file in debian

烂漫一生 提交于 2019-12-11 05:27:58
问题 can we set svn:external for a single file in debian 回答1: Yes you can if can you use svn version >= 1.6. http://subversion.tigris.org/svn_1.6_releasenotes.html#externals ...as drobert pointed out in a comment, svn 1.6 is still experimental in debian. 回答2: an externals definition can only point to directories, not files. 来源: https://stackoverflow.com/questions/1371583/can-we-set-svnexternal-for-a-single-file-in-debian

svn externals not working

青春壹個敷衍的年華 提交于 2019-12-11 02:36:25
问题 I don't claim to know anything about svn, but I thought I understood how externals work. I'm making a new project and i want my lib folder to have an external to some other project (svn location). I've done this plenty of times before and never had an issue, am I just having a Friday moment? I created the following folders: /myproj /myproj/lib under a folder already checked out. I svn added and committed them, then updated the parent folder to make sure everything was good. I right clicked ->

Using the Mercurial hgsubversion extension with SVN Externals

拟墨画扇 提交于 2019-12-10 16:08:29
问题 I'm using Mercurial to talk to a Subversion repository, and the repository is currently using SVN externals to pull in another repository. hgsubversion works really well for communicating with the repository, but it doesn't seem to work with SVN Externals. Is there a way to configure it to work with this? EDIT: Partial Solution SVN Externals can be pulled down just fine. In your repository, add a new file called .hgsvnexternals (if Windows is complaining about not having a file name when you

SVN externals not properly displayed in TortoiseSVN's Repository Browser and locally marked as non-versioned

狂风中的少年 提交于 2019-12-10 10:48:57
问题 I work on a (work) project that's scattered across a myriad of (source) projects and SVN locations. To make life easier, I followed a colleague's advice and set up a new folder on SVN, /_all/ , and specified all of the other projects' trunk folders as externals: When I check /_all out, it dutifully pulls out all external projects. It works great. But in my SVN Repo Browser, I can only see one of all those externals being linked in. It also seems to have the wrong overlay icon (blue instead of

Setting Up SVN:Externals with TortoiseSVN in Windows

只谈情不闲聊 提交于 2019-12-08 17:37:59
问题 I'm trying to set up svn:externals with TortoiseSVN on a Windows machine. I have two projects and both repositories have been already created on the same local machine. The current structure looks like this. I created repoA , repoB for repositories and workA and workB for working directories (checkouts). Repositories Z:\repos\repoA Z:\repos\repoB Working Directories Z:\Projects\workA\trunk\core.php Z:\Projects\workA\trunk\lib\lib01.php Z:\Projects\workB\trunk\core_mod.php Z:\Projects\workB

How to deal with partial svn:externals when migrating to Git?

时光总嘲笑我的痴心妄想 提交于 2019-12-07 08:30:48
问题 I would like to import a SVN repository into a GitHub Enterprise repository There are many questions related to this matter and most of them can be addressed either with Git submodules or Git subtree. In my case I have two repositories: The main project repository The modules repository (a big SVN repository over 2 GB) This module repository has the following architecture: foolib/ moduleA/ ... moduleB/ ... ... For the project, only few modules from foolib are used as svn:externals . For

How to set a revision number for svn external?

白昼怎懂夜的黑 提交于 2019-12-07 03:19:28
问题 So I have this file Mobile.framework and if I do a svn propedit i get svn propedit svn:externals It brings up Mobile.embeddedframework svn+ssh://../Mobile.embeddedframework This is pointed to the head. I want to edit this and set it to -r1209. Whats the correct way to set it to a revision? 回答1: Have a look at the SVN manual: Mobile.framework svn+ssh://../Mobile.embeddedframework@100 - note the @100 . (or) svn propedit svn:externals . can help you edit it. 回答2: svn propset svn:externals \

when updating a whole project's root, how to exclude svn externals from being updated?

*爱你&永不变心* 提交于 2019-12-06 21:46:10
问题 Is there a way to exclude all svn externals when doing a recursive update? Is there a way to exclude only 1 of all of the svn externals when doing a recursive update? Basically I'd like to cut down the svn update time, and a couple of the SVN externals that I have will just about never get updated. 回答1: Yes, there is an option for this (to ignore all): > svn update --ignore-externals I don't know of any option to specifically ignore one or some externals while updating the rest. 回答2: If you