tortoisesvn

Tortoise SVN hidden _svn folders

流过昼夜 提交于 2019-12-03 02:17:09
They are specially annoying when I need to upload to the server a web solution. Is there a way of configuring SVN to create the _svn folders outside my working directory? If not, what is the best way to deal with them when you need to copy only the code? Update: Using "svn export" command is problematic because there are files that are not under source control but necessary like .dll's, xml data files or database files and they will not be exported. Therefore it would be required to manually copy them in there different subdirectories from the working copy each time. It's not (currently)

tortoise svn giving me “Redirect cycle detected for URL 'domain/svn'”

匿名 (未验证) 提交于 2019-12-03 02:14:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser ( http://domain/url gives me "Collection of repositories") but the TortoiseClient is giving me the error mentioned in the title. I set up a subversion on my ubuntu server by doing the following (shortened): mkdir /var/svn svnadmin create /var/svn/test and my dav_svn.conf looks the following: DAV svn SVNParentPath /var/svn SVNListParentPath On I read about sym links possibly causing the problem, so I'll attach my 000-default

Command to get svn diff of current and previous revision number

大憨熊 提交于 2019-12-03 02:10:48
问题 How can I get diff in file content of current and previous revision number by command line? And how can I get previous revision number? 回答1: As per your comments you'd like to see differences between the current and previous versions of an item that is not in your working copy. For that you need to know the item's URL (e.g. svn://[repo_root]/[path]/[item] ) which I assume you do. Then you do the following: svn info <item-URL> will contain (among other things) the last change revision. With

TortoiseSVN Error: “OPTIONS of &#039;https://…&#039; could not connect to server (…)”

匿名 (未验证) 提交于 2019-12-03 00:48:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to setup a new computer to synchronize with my SVN repository that's hosted with cvsdude.com. I get this error: ![SVN Error][1] - removed image shack image that had been replaced by an advert Here's what I did (these have worked in the past): Downloaded and installed TortoiseSVN Created a new folder C:\aspwebsite Right-clicked, chose SVN Checkout... Entered the following information, clicked OK: URL of repository: https:// -svn.cvsdude.com/aspwebsite Checkout directory: C:\aspwebsite Checkout depth: Fully recursive Omit externals:

TortoiseSVN新手使用教程

匿名 (未验证) 提交于 2019-12-03 00:32:02
***本文章转载自https://blog.csdn.net/maplejaw_/article/details/52874348*** 这篇文章源于6月份给公司新人作的关于SVN使用的培训,转眼已经过了几个月的时间,丢了也怪可惜的,于是整理出来希望能够帮助后来人快速入门。 开发人员强烈建议使用IDE中的SVN插件更加智能与人性化。 首先安装SVN客户端,windows一般选择乌龟客户端 https://tortoisesvn.net/downloads.html 。 根据系统位数选择相应客户端进行安装。 如果你喜欢用命令行操作,请务必记得勾选 command line client tool Ϊ will be install on local hard driver ,不用命令行的跳过这一步。 然后一路next即可安装。安装完毕后,在任意地方右键查看快捷菜单。发现 TortoiseSVN 即表示安装成功。 如果勾选了安装命令行工具,那么输入命令SVN,有如下提示也表示安装成功 但是此时菜单全是英文的,如果你不习惯英文,可以去下载语言包,记得下对系统位数。 安装完语言包之后,可以右键进入 setting 设置。 选择你喜欢的语言(比如中文),然后确定,不出意外,现在的语言已经切换到中文了。 安装教程到此结束,下面开始介绍SVN的使用。 假如项目已经在服务器的仓库里

svn更新遇到问题

匿名 (未验证) 提交于 2019-12-03 00:21:02
svn更新时遇到问题,更新失败,需要clean up,然后我就下载了tortoisesvn 1.6进行安装,这个版本只有第一项和最后三项(原图忘记截了。。。),我选择了第一个Additional icon sets模式, 事实证明我选错了,然后去卸载,结果卸载程序中没有显示tortoisesvn这个软件,我就下载了腾讯管家来卸载,很快卸载完了,安装新版本tortoisesvn 1.9,如下选择的第二个模式进行安装, 安装完后来到项目根目录,项目上右击: 勾选上break locks,进行clean up: 然后在回到eclipse中右击项目,选择Team-refresh/clean up,然后就可以愉快的更新了 文章来源: svn更新遇到问题

Error “The server sent an improper HTTP response.” on commit with Subversion 1.8+ client

 ̄綄美尐妖づ 提交于 2019-12-03 00:04:33
Recently I have been plagued by an error on committing to a single SVN repo using TortoiseSVN (1.8.7.25475) or AnkhSVN (2.5.12471.17): Error running context: The server sent an improper HTTP response Here is a screenshot of the error in TortoiseSVN: The pixels differ of course, but the error is the same in AnkhSVN. This only seems to affect attempts to commit modifications, not additions or deletions; and I can commit mods to several other SVN repos on the same server just fine. Since my teammates continue to commit mods to the repo in question and the issue has only struck my commits to that

Merge branch with trunk

こ雲淡風輕ζ 提交于 2019-12-03 00:02:48
问题 Using TortoiseSVN, I need to take changes I've done in a branch and then merge them with trunk. I am the only developer on this project, so I know trunk hasn't changed. I am learning SVN so that eventually my team can use it. Basically, I want my trunk to look exactly like the branch. In pre-svn world, I would just copy the files in my branch folder, delete the files in the trunk folder, and then copy branch into trunk. In TortoiseSVN, I've tried Reintegrate a branch , Merge a range of

SVN - automate merge of trunk into branch

蓝咒 提交于 2019-12-02 23:52:10
I have a branch in SVN that I want to keep up to date with changes from the trunk. What I would like to do is have a script or something that runs nightly that does this merge and then commits the new version of the branch if there are no merge conflicts but if there are merge conflicts somehow indicate so. I found this post that is somewhat helpful although it doesn't do everything. I have been unable to find a way to determine whether there are merge conflicts and this is mostly what I'm looking for. Adding building the code and then committing on success will be easy enough in the script

Using Subversion, how can I cut from one file and paste to another preserving history

混江龙づ霸主 提交于 2019-12-02 23:06:40
The situation is that I've spent some time messing around with some experimental code. I now want to move part of that code - about 500 lines - into another file, but I don't want to lose the history, as I would if I do a simple text-editor cut and paste. As close as I know how to get is separating the code out of the original file - svn copy, then delete unwanted stuff from both copies. But I don't know how to then append that partial copy onto an existing file, keeping the history from both. The reason this is important is basically that the code is just pretty specialised stuff, to help