svn

WebSVN - Authentication for paths in the repository

有些话、适合烂在心里 提交于 2020-01-01 18:21:05
问题 I need simple 'to-the-point' tutorial or neat exemple of How to implement authorization for paths (checkout diretories) out of a single Subversion repository, using WebSVN. Lets say repository is /svn/repos/r_project Two checkout (paths) from this repos are /svn/repos/path1 and /svn/repos/path2 ... I want to protect each path (directory) with a different username/password. Subversion and WebSVN are installed on Unix Apache (redhat). Already i can see the two paths in the WebSVN repository

Deleting committed test folders / files on Google Code?

霸气de小男生 提交于 2020-01-01 17:18:46
问题 Is there a way to remove the test folders and files that I have committed to a Google Code branch? 回答1: You can use svn delete your_file to delete the file, and, then, use svn commit to push the deletion to the server -- but note that will not delete anything from the SVN history : the way SVN works is to keep a trace of everything, which means permanently deleting something is not " allowed ". If you want to completly remove a file from the repository's history, it's a lot harder, and will

Deleting committed test folders / files on Google Code?

老子叫甜甜 提交于 2020-01-01 17:18:06
问题 Is there a way to remove the test folders and files that I have committed to a Google Code branch? 回答1: You can use svn delete your_file to delete the file, and, then, use svn commit to push the deletion to the server -- but note that will not delete anything from the SVN history : the way SVN works is to keep a trace of everything, which means permanently deleting something is not " allowed ". If you want to completly remove a file from the repository's history, it's a lot harder, and will

how do I work around this error while copying SVN repository by svnsync?

南楼画角 提交于 2020-01-01 16:59:13
问题 I am copying a repository by using svnsync and am receiving this error on the same revision every time. Transmitting file data ...svnsync: REPORT of 'https://svn1.avlux.net/xxxxxx.net': Could not read response body: Secure connection truncated https://svn1.avlux.net) It is a large revision and I don't have admin access to the server. Is there a way around this, even if it involves checking out and copying the revision manually? 回答1: Are you just trying to copy the repo once or are you trying

how do I work around this error while copying SVN repository by svnsync?

六月ゝ 毕业季﹏ 提交于 2020-01-01 16:59:11
问题 I am copying a repository by using svnsync and am receiving this error on the same revision every time. Transmitting file data ...svnsync: REPORT of 'https://svn1.avlux.net/xxxxxx.net': Could not read response body: Secure connection truncated https://svn1.avlux.net) It is a large revision and I don't have admin access to the server. Is there a way around this, even if it involves checking out and copying the revision manually? 回答1: Are you just trying to copy the repo once or are you trying

Google Code svn migration

此生再无相见时 提交于 2020-01-01 16:23:08
问题 How to migrate from Google Code's subversion to another subversion server keeping the history? The problem here is that I don't have access to the repository of Google Code, nor to the one I will migrate. 回答1: You can 'svnsync' the data from Google code to a local repository on your pc. You can then use 'svnadmin' to create a dump file from that and send that to your new hosting provider or in some cases you can use svnsync to upload to the repository. The only public hosting I know that

SVN to Git import problem using “git svn clone”

徘徊边缘 提交于 2020-01-01 15:52:07
问题 When trying to import my SVN repo in Git, using the following command: git svn clone -s https://xx.xx.xx.xxx/repo/iphone/project ./project It runs for a long while and then finally craps out with the following error: RA layer request failed: REPORT of '/repo/!svn/vcc/default': SSL negotiation failed: SSL error: parse tlsext (https://xx.xx.xx.xxx) at /usr/local/git/libexec/git-core/git-svn line 5091 Has anyone ever seen this problem? 回答1: I was never able to figure this out. I ended up doing

svn commit missing file automatically

本小妞迷上赌 提交于 2020-01-01 13:15:43
问题 I want to write a batch file that can auto commit missing file recursively. how to write the batch command? please helps. 回答1: The following batch script should SVN delete and commit all files marked as missing (i.e. deleted locally but not using SVN delete): @echo off svn status | findstr /R "^!" > missing.list for /F "tokens=2 delims= " %%A in (missing.list) do ( svn delete %%A && svn -q commit %%A --message "deleting missing files") Missing files are shown by svn status with the character

svn commit missing file automatically

依然范特西╮ 提交于 2020-01-01 13:15:34
问题 I want to write a batch file that can auto commit missing file recursively. how to write the batch command? please helps. 回答1: The following batch script should SVN delete and commit all files marked as missing (i.e. deleted locally but not using SVN delete): @echo off svn status | findstr /R "^!" > missing.list for /F "tokens=2 delims= " %%A in (missing.list) do ( svn delete %%A && svn -q commit %%A --message "deleting missing files") Missing files are shown by svn status with the character

svn commit missing file automatically

微笑、不失礼 提交于 2020-01-01 13:14:06
问题 I want to write a batch file that can auto commit missing file recursively. how to write the batch command? please helps. 回答1: The following batch script should SVN delete and commit all files marked as missing (i.e. deleted locally but not using SVN delete): @echo off svn status | findstr /R "^!" > missing.list for /F "tokens=2 delims= " %%A in (missing.list) do ( svn delete %%A && svn -q commit %%A --message "deleting missing files") Missing files are shown by svn status with the character