tortoisesvn

No context menu in Windows 7 for TortoiseSVN

南笙酒味 提交于 2019-12-08 15:04:40
问题 I'm using Windows 7 Ultimate 64-bit. I've installed the most recent 64-bit version of TortoiseSVN from the official site, restarted the PC and can't see a SVN context menu even when shift-right clicking. I've uninstalled this version and tried with 32 bit one, but still no luck. They say in the FAQ it happens when you install the 32-bit application on a 64-bit OS, but I've tried both and none works! There's a movie on YouTube showing installation process and many comments with the same

I cannot see the .SVN folders anymore?

允我心安 提交于 2019-12-08 14:54:11
问题 I recently upgraded my tortoise to version 1.7. It's been a while now I cannot see the .svn folders. I used to copy folders to replicate some code, enter the folder and delete the .svn of the copied version so that it considers the code as new. I cannot do this anymore :( Anyone knows what is going on? 回答1: Subversion 1.7 switched to a single-folder structure, like many DVCSes (git, bazaar, etc.) - the only .svn folder is in the root folder now, and this contains all of the info for the

Getting “Unable to connect to a repository” error in CodePlex with TortoiseSVN

限于喜欢 提交于 2019-12-08 13:42:24
I just created a project over at codeplex and tried committing the sourcecode (so my project can be available publicly). TortoiseSVN just doesn't work with CodePlex anymore it seems. And codeplex doesn't let you change source uploading options without contacting them first. The errors in get when I try to checkout are: Unable to connect to a repository at URL 'http://onthefly.codeplex.com' The OPTIONS request returned invalid XML in the response: XML parse error at line 1: no element found (https://onthefly.svn.codeplex.com/svn) and OPTIONS of 'http://onthefly.codeplex.com': could not connect

上传本地新项目到SVN服务器

左心房为你撑大大i 提交于 2019-12-08 13:04:33
本地开发了新项目,想上传到SVN,一时不知道怎么做。百度查了下,很多都是在原项目中新增文件上传的,没找到自己想要的。 经过摸索,找到了办法。首先要确保安装了svn插件 TortoiseSVN 在一个 有检出的项目文件夹(如下的文件夹 1 就是我从svn检出的项目) 中 在空白处 右键 ->TortoiseSVN -> Repo-browser,这样就到了svn服务器的目录了,当前存在的svn项目的目录 这里要注意:不能直接在桌面或者随便某个地方 右键->TortoiseSVN,因为并没有需要的选项,如下: 然后就可以把自己本地的新项目传到SVN啦,通过那个红色框起来的文件可以选择你想要传的目录,选好目录,右键->Add folder ,找到自己本地的项目,上传就ok啦 来源: CSDN 作者: SalineJ 链接: https://blog.csdn.net/alinekang/article/details/81184905

Creating a branch with TortoiseSVN without /trunk structure

和自甴很熟 提交于 2019-12-08 12:43:28
问题 Background: We have our source code saved in an SVN repository at our own server. We have Team A working on the main functionality of the website. We are looking to work with a Team B on the design aspects which will be at a different location. A long time back when setting up the SVN repository, I created it with a structure which was finally accessible at: svn://www.myserver.com/main/abc The source code files are present at the 'abc' level and in folders below that. This has been working

Open Office and subversion compatibility

纵然是瞬间 提交于 2019-12-08 12:24:46
问题 Does anyone have any experience placing OpenOffice documents under source control using Subversion? In particular, does Subversion merge documents correctly/efficiently etc.? 回答1: You have this project, an extension to openoffice that allows you to handle subversion stuff inside OpenOffice. Yet, it seems a little outdated :( On the other hand, you have the odfsvn project that provides tools to handle OpenOffice document in subversion (but seems limited to Mac and Linux systems) And last but

Tortoise SVN update and commit doesn't work

元气小坏坏 提交于 2019-12-08 11:21:23
问题 I am having issues with Tortoise SVN lately. I am unable to update and commit anything. Tortoise SVN version: 1.6.16 Build 21511 - 64 bit OS: Windows 8 server We use VisualSVN Server for the repo. Whenever I try to update, I see the following screen where it doesn't update anything actually and it just stays like this for hours. Similarly, when I try to commit anything, I get the error message below It happens only on my computer. Other developers are running the same OS, same TortoiseSVN

bitnami svn setup

痴心易碎 提交于 2019-12-08 11:09:19
问题 I have an AWS instance using the Bitnami SVN install. I hoped this would make setting up source control easy but I'm struggling in the basic configuration. I tried following these directions: http://wiki.bitnami.org/Components/Subversion#How_to_start_with_Subversion_in_Amazon_EC2.3f opened up port 3690 edited /opt/bitnami/repository/conf/svnserve.conf for user permissions added passwords in /opt/bitnami/repository/conf/passwd restarted svn with sudo /opt/bitnami/ctlscript.sh restart

Omit Versioned Files or Folders from Commit List

我只是一个虾纸丫 提交于 2019-12-08 07:52:44
问题 Follow-to this question: The Dual Nature of svn:ignore Is there any way to accomplish the second scenario? i.e. Stop Tortoise SVN or plain SVN from listing a fixed set of files which have local modifications but are under version control from appearing in the commit list? I am on a project where I am the sole remote developer with a group of developers in another company, as a consequence all the other developers can share certain files which I need to make local modifications to. 回答1:

How to replace a branch in subversion?

人盡茶涼 提交于 2019-12-08 05:52:26
问题 I'v never used branching till yesterday so I didn't knew that I should make the branch our of the trunk. So I branched a subfolder and this caused some side effects like accidental switching the trunk to branch ... this resulted in overwriting the trunk with the subfolder and deleting everything else inside the trunk = destroying my working copy ;/ Now I'm in the situation that I want to override this problematic branch with my working copy. How can this be performed? I'm using Tortoise SVN.