svn

SVN: Merging two branches together

守給你的承諾、 提交于 2019-12-24 02:23:55
问题 We have multiple developers working on a project. We're employing a feature-branch method of branching in which we do the following: All maintenance work and bug fixes are done on the trunk All new functionality is done on a new branch Branch is updated regularly (via merging changes from trunk to branch) However, we've run into a situation that 2 branches [we'll call them feature-branch-1 and feature-branch-2] need to be merged together. What is the best way to accomplish this? Part of me

Merge an untracked directory into the tracked directory

别来无恙 提交于 2019-12-24 02:17:14
问题 I have two version of the source directories where /d1 is tracked by git but outdated /d2 is not tracked by anything but the most up-to-date What is the best way to merge /d2 into /d1 ? 回答1: what speaks against copying d2 over d1 and then creating a new commit objects? just make sure you do not overwrite your .git -directory. doing backups is a good exercise here cp -aT d2 d1 git status # shows lots of changed files git add -u # or git add -A depending if you want to add new files as well git

Is there any other advantage to using '_svn' directories instead of '.svn' in a Subversion controlled Visual Studio working copy [duplicate]

╄→гoц情女王★ 提交于 2019-12-24 01:59:13
问题 This question already has answers here : Configuring VisualSVN Server to use _svn instead of .svn (4 answers) Closed 5 years ago . I've heard that Visual Studio doesn't like the .svn directories in a working copy from a subversion repository, and that using '_svn' is a better choice. Apart from not being hidden by the explorer, what is this mysterious advantage, or is this all a dirty rumour? 回答1: Visual Studio 2002 and 2003 had problems with directories starting with a dot. Especially when

Ignore some files from SVN commit

倖福魔咒の 提交于 2019-12-24 01:38:17
问题 Have to remove the logs and schema.rb from the svn as that is machine dependent.My schema is not migrating after the update as the schema revision on different machine is of different order. 回答1: This is done with adding svn:ignore property. CD to where your files are located and try the following command: svn propset svn:ignore schema.rb . Note the dot at the end of the command. Check that the files are ignored: svn status --no-ignore Then commit. 回答2: I assume you need to ignore file while

SVN Commit failed with syntax error, unexpected '[' [duplicate]

旧时模样 提交于 2019-12-24 01:25:20
问题 This question already has answers here : Unexpected bracket '[' - PHP [duplicate] (3 answers) Closed 5 years ago . I 'm try to commit this code to my server from my Ubuntu server $me = $this->fetchAll(array('id'=>$Id,'ce'=>$e), array('cr'=>array('$slice' =>[$offset, $limit]))); but it return PHP Parse error: syntax error, unexpected '[' in - on line 114 MSG: Failed to checkin branches/myFile.php, PHP said what is the wrong with '$slice' =>[$offset, $limit] in order to commit it to my server

SVN Update specific files from repository only

こ雲淡風輕ζ 提交于 2019-12-24 01:25:10
问题 There's this repository which is many many gigabytes, 99% of which I don't need. What I want to do is get/update only the *.js *.css *.html .doc and *.pdf files. The rest, which are the enormous ones, I want to leave up there and not waste time and disk space getting because I don't need to look at them and I'll never be changing them. I realize that the svn:ignore feature isn't what I need, that's related only to what gets checked in and what gets ignored. I also know that there's no

Merging updated code from parallel Subversion repository

空扰寡人 提交于 2019-12-24 01:16:01
问题 I was wondering what steps people generally take when it comes to merging a live (continually updated) SVN respository with an offline one (updated less often), as an example, take my scenario: A while ago I downloaded the BugTracker.NET system when it was at version 3.2.3. I've subsequently make some enhancements to the code for our business. We develop these under source control using SVN. Meanwhile of course, the core BugTracker.NET code has continued to be developed. I basically want all

Ways to synch many (small) files over high-latency network connection

女生的网名这么多〃 提交于 2019-12-24 01:15:24
问题 We typically deploy our software applications to our clients using Subversion (svn update on the clients; unidirectional). We're currently experiencing problems with one of our clients because of the high latency (large file download speeds are good) because they are in China and our server is in Canada. Subversion simply times out with an error after a very long period of time. Our application has lots of small files (.aspx, .config, etc.) and a few larger files (.dll, .jpg) for a total of

Could not open the requested SVN filesystem on windows7

两盒软妹~` 提交于 2019-12-24 01:08:59
问题 while configuring apache httpd with subversion on windows 7, getting below error.. i had already installed with different types of versions of SVN and apache also still im facing this issue.. could please some one help me out of this issue.. svn, version 1.9.1 (r1698128) `compiled Sep 1 2015, 19:50:43 on x86-microsoft-windows` httpd-2.2.22-win32-x86-openssl-0.9.8t, Server version: Apache/2.2.22 (Win32) Server built: Jan 28 2012 11:16:39 and previously i had installed svn for 1.8.18 and httpd

Is there an SVN benchmark?

我与影子孤独终老i 提交于 2019-12-24 01:07:53
问题 We want to do some performance optimizations on our local SVN server (like moving to a better server, adding an SSD, etc...) Is there some benchmark I could use to see if these modifications actually help performance? 回答1: Yes, there is one (published by CollabNet) -- https://ctf.open.collab.net/sf/projects/csvn/ In SVN server 1.8.0 fsfs-stats and svn-bench were introduced. The CollabNet install does not include them at the moment. 回答2: I believe that benchmarking out disk in this case would