tortoisesvn

What is the effect of “Make depth sticky” in subversion?

浪子不回头ぞ 提交于 2019-12-03 10:24:36
I'm having a hard time finding clear documentation on the behavior of using a sticky depth setting on an SVN working copy. In SVN when using the "Update to Revision" dialog there is a "Make depth sticky" checkbox. What are the effective differences between making depth sticky and non-sticky? When the depth is sticky, you'll will update with the same settings each time you update. If the depth isn't sticky, next time you update you will revert back to the former setting, pottentially downloading everything recursively (that is maybe a lot of data). EDIT: It seems that "fully recursive" is

Visual Studio Publish Failed: “Unable to delete file … Access to the path … is denied.”

旧时模样 提交于 2019-12-03 09:52:07
I've recently switched from a Windows XP machine to Windows 7. I use Subversion and TortoiseSVN. I cannot publish my .NET application in Visual Studio. I get over a thousand errors like this: Unable to delete file "obj\Debug\Package\PackageTmp\Views\ViewName.svn\text-base\ActionName.aspx.svn-base". Access to the path 'C:\Code\SolutionName\ProjectName\obj\Debug\Package\PackageTmp\Views\ViewName.svn\text-base\ActionName.aspx.svn-base' is denied. Why is Subversion giving me trouble? How do I fix it? I disabled the file indexing of my bin and obj folders. But, that didn't work. I noticed that my

Tortoise - is it possible to ignore new folder before committing it?

北慕城南 提交于 2019-12-03 09:38:59
I just added a class library project to my .NET solution. When I built it, it created the bin and obj folders, which I want to exclude from version control. However, Tortoise won't let me ignore the folders before the first commit. It gives the following message. Cannot add bin to the ignore list! I have to check the whole lot in, and then choose Delete and add to ignore list for the two folders. How do I prevent them being checked in at all, and ensure Tortoise knows to ignore them? It's because you haven't yet added their parent directories. Do 'add' on the new project directory first, and

Using Tortoise SVN diff in TFS

可紊 提交于 2019-12-03 09:36:04
问题 I want to use Tortoise SVN diff utility with TFS. I know how to configure user tools in TFS. What I need is installer for Tortoise SVN diff utility. I think I need to install full Tortoise SVN to get SVN diff tool, is there a standalone version of this tool available for download? I know various other diff tools are available like winMerge etc. but I am very much familiar with tortoise svn diff. 回答1: The TSVN diff tools are available separately. See the download page, scroll down to "Tools".

SVN - automate merge of trunk into branch

倖福魔咒の 提交于 2019-12-03 09:32:29
问题 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

svn commit problem, Cannot read 'd:\\UC\\db\\txn-current': End of file found

£可爱£侵袭症+ 提交于 2019-12-03 09:11:30
I have a problem commiting to svn server, Here's what I got, File Can't read 'D:\SVNROOT\UC\db\txn-current'.: End of file found (It's traslation of Korean, so there's might be differ than what English error said..) In previously, I shut down transaction when update from svn, cause some file was so big, so I was shut down downloading for delete big files first, but after that, I got message about 'txn-current', does anybody can help me to solve this? thank you for regarding this db\txn-current is a file in the repository data on the server which should contain the current revision number if you

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

女生的网名这么多〃 提交于 2019-12-03 09:04:19
问题 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

Tortoise SVN : How to ignore bin contents from commit

谁都会走 提交于 2019-12-03 08:53:49
问题 I use TortoiseSVN 1.7.9. How can I ignore / remove contents from /bin folder when I svn commit the project folder? I don't want to commit files such as .dll , .pdb , etc. I put .dll .pdb entry in svn:ignore property but it does not work and these files still show up in the list when I perform a commit. I don't use command line client. In Windows Explorer I right-click on root project folder and click commit in TortoiseSVN context menu. 回答1: You can find the answer in the TortoiseSVN manual

How do I Unignore a file in TortoiseSVN?

杀马特。学长 韩版系。学妹 提交于 2019-12-03 08:53:48
问题 I ignored a file in TortoiseSVN by mistake. How do I reverse this and add the file to my repository? 回答1: Just edit the svn:ignore property (in the subversion tab of the directory properties). (If you ignored a subfolder, select the property tab of it's parent folder) 回答2: If you right click on the directory containing the file and select SVN Properties, you should see an svn:ignore property with a list of ignored files. Simply edit that list and remove the rule ignoring your file. 回答3:

How to have TortoiseSVN always freeze svn:externals for tags

扶醉桌前 提交于 2019-12-03 08:43:57
问题 Is this possible with tortoiseSVN?: Always freeze svn:externals for tags the scenario is our trunk will always use the 'HEAD' revision for externals, however when we create 'tags' we would like for them to have a revision set for externals to properly 'freeze' them at a specific point in time. Update Thanks to everyone for your feedback/info. Since I could not find anything that would completely meet our needs (tried smartsvn and svncopy.pl ) I made a console app that so far has passed all