svn

svn backup from googlecode

心不动则不痛 提交于 2020-01-13 11:53:07
问题 I currently host my project on googlecode svn, however I would like to have a copy of it hosted on another svn server (also online), can anyone suggest the best way to keep this backed up and up to date? 回答1: Dump and sync will work, but it's probably easiest to use svnsync instead, assuming you're using the copy server as a read-only backup and not intending to commit to it as well. 回答2: http://rsvndump.sourceforge.net/ http://svnbook.red-bean.com/en/1.1/ch05s03.html#svn-ch-5-sect-3.5 Though

How would you avoid “Xcode, Subversion Error: 155007 (Path is not a working copy directory)”?

一个人想着一个人 提交于 2020-01-13 10:44:24
问题 I am not able to see the commit option after I make changes to my working copy, but I ensured that my settings for svn were correct. What exactly is the problem with this error message? Xcode is showing: Your path is not a working copy What should I do to resolve this? 回答1: The blog post "Xcode, Subversion Error: 155007 (Path is not a working copy directory)" and its comment are pretty much the reference on this kind of error. Simple Workaround : Delete your local copy ( cd myxcodeproject; rm

svn2git failing saying Author: VisualSVN Server not defined in ./authors.txt file

喜欢而已 提交于 2020-01-13 09:40:09
问题 I am trying to migrate to git from svn and it fails by throwing the below error: sethu@csmartserver:~/csmart/git/csmart$ sudo /var/lib/gems/1.8/bin/svn2git http://localhost/svn/csmart --authors ./authors.txt --verbose Running command: git svn init --prefix=svn/ --no-metadata --trunk=trunk --tags=tags --branches=branches http://localhost/svn/csmart perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = "en_IN:en", LC_ALL = (unset), LC_CTYPE =

SVN - handshake failed : SSL error

折月煮酒 提交于 2020-01-13 09:21:09
问题 I am unable to update or commit to svn from a machine that did not have this problem until recently. I updated the tortoise svn client. I can delete the folder and pull a new copy down every time but cannot commit or update. Unable to connect to a repository at URL OPTIONS SSL handshake failed: SSL error: sslv3 alert illegal parameter 回答1: I resolve that problem as follows: Go with Chrome (or other browser that allows to save the certificate) to svn address Save the certificate file Install

virtualenv, python and subversion

北城余情 提交于 2020-01-13 09:11:13
问题 I'm trying to use the python subversion SWIG libraries in a virtualenv --no-site-packages environment. How can I make this work? 回答1: You can install it inside virtualenv from svn: source /home/you/venv/python/bin/activate pip install -e svn+http://pysvn.tigris.org/svn/pysvn/tags/pysvn/Extension/1.7.6/#egg=pysvn 回答2: This blog post answers my question nicely. http://codersbuffet.blogspot.com/2009/09/mercurial-subversion-and-virtualenv.html 回答3: According to Maciek Sawicki answer: . ap/bin

use svn revision number in application version

此生再无相见时 提交于 2020-01-13 08:28:08
问题 In a VS2010 solution (not .NET), I'm looking to include the svn revision number as part of the application version. we do not use makefiles at the moment, only the VS solution/project settings. I'd like to get the working copy revision number at compile time, store it into a variable, so it can be used later on in the code to display the version number. So far, I've successfully used svnversion to get the latest version of the working copy as a pre-built event . "C:\Program Files\CollabNet

Changing the language for Subversion error messages

荒凉一梦 提交于 2020-01-13 08:21:36
问题 For some reason, subversion is returning me error messages in what I think is German: # svn up . svn: Zielpfad existiert nicht Unfortunately, I don't know that language... Before I resort to using a online translation engine to work with this, I figured I'd try to fix it. I figure I'm just doing something very simple wrong. I'm running subversion 1.6.4 installed via yum on centos (upgraded from 1.4.something that was having the same problem). This is on a VPS admined with CPanel. From what I

Automating builds from subversion tags

我只是一个虾纸丫 提交于 2020-01-13 07:56:09
问题 I'm trying to automate the build process for engineering group. As part of that automation, I'm trying to get to a point where the act of applying a specific tag that adheres to a pattern will kick off an automated process that will do the following: Check out source code Create a build script from a template Build the project I'm pretty certain I could do this with a post-hook in subversion, but I'm trying to figure out a way to do this with something other than a subversion hook. Would it

Inserting comments automatically using TortoiseSVN?

陌路散爱 提交于 2020-01-13 07:15:08
问题 Tricky question: I need the following to happen: 1) Before you click commit, tortoisesvn should insert a legal notice comment to the code files being commited. I am talking about client side event ONLY. 2) Svn:keywords are not going to work because those keywords need to be in the file already. May be there is a way to write plugin for tortoise? 回答1: CLIENT SIDE HOOK SCRIPTS (SAFE but svn client specific): The only safe way to do it is to use client side hook scripts. Here a hint on how to

reading SVN:externals from working copy

眉间皱痕 提交于 2020-01-13 05:29:08
问题 Until recently it was simple to read all the SVN:Externals referenced in a subversion working copy by just reading some text files stored in the .svn subdirectory. With the change to a new on disk structure using mysql tables this is no longer that simple. I want to update an internally used tool that used to read that list of externals to using the new structure. The Tool is written in Delphi 2007 so I would prefer some code written in Delphi. There is Version Insight for RAD Studio on