svn

LDAP and Subversion: Who can access my repository

ε祈祈猫儿з 提交于 2019-12-25 04:22:39
问题 I use our Active Directory groups to verify access to our Subversion repository. We have the following setup in our httpd.conf file: <Location /repo> DAV svn SVNPath /mnt/svn/repositories/repo AuthType basic AuthName "Corporate Repostitory" AuthBasicProvider ldap AuthzLDAPAuthoritative off AuthLDAPUrl "ldap://ldap2.vegicorp.net:389 ldap3.vegicorp.net:389/OU=Users,DC=vegicorp,DC=NET?sAMAccountName" NONE AuthLDAPBindDN "CN=CM,OU=Service Accounts,OU=Users,DC=Vegicorp,DC=NET" AuthLDAPBindPassword

How to escape ^M from svn:eol-style native

可紊 提交于 2019-12-25 04:07:37
问题 We have specified eol-style:native property in our subversion repository for shell script; this gets rid of ^M characters which are included when file is edited on Windows and executed on UNIX box. But recently we ran into an issue: One shell script had following statement written: sed 's/^M//g' source_file > target_file to replace ^M characters from a data file. But when the script is checked-in in subversion and updated on unix box the statement becomes: sed 's/ //g' source_file > target

Decrypt SVN authentication data

风格不统一 提交于 2019-12-25 03:53:56
问题 I would like to get the name of a working copy user. The authentication data is saved in %appdata%\subversion\auth. , however it is encrypted. Is it possible to decrypt it programmatically using c#? Any help would be highly appreciated! 回答1: TortoiseSVN Password Decrypter and it's sources 来源: https://stackoverflow.com/questions/25018572/decrypt-svn-authentication-data

svn update not updating

白昼怎懂夜的黑 提交于 2019-12-25 03:46:09
问题 This is rather weird. When I do a Svn update, tortoise tells me that I am at the last revision, but there are plenty of exclamation marks everywhere telling me that lots of files are out of sync. I can delete the old files, update, then get the new version, but a mere svn update on the file, on the directory or any parent directory does not work. 回答1: The (!) red circle icon means modified , not out of synch (I don't think such concept exists in Subversion). TortoiseSVN is telling you that

svn update is not working

≯℡__Kan透↙ 提交于 2019-12-25 03:37:17
问题 I am using netbeans IDE and svn repository to run my project . I have updated the netbeans TO 7.3 version and checked out the repository again. The code was successfully checked out. But when I run the command svn up /var/www/ then the following error appears on command prompt : svn: The path '/var/www' appears to be part of a Subversion 1.7 or greater working copy. Please upgrade your Subversion client to use this working copy. I have browsed the error but unable to get any solution. Please

Android Studio svn:E175012 问题解决

泄露秘密 提交于 2019-12-25 03:36:06
今天使用 Android Studio checkout 工程时出现了Cannot checkout from svn: svn:E175012:Connection timed out 的问题,看到Connection timed out 感觉应该是网络比较差的问题,重试了还是同样的问题,但使用 RabbitVCS SVN 却没有问题,百思不得其解。最后挂上VPN,居然可以了,感觉还是网络的问题。遇到这个问题时保证网络畅通的情况下多试几次应该就可以了。 来源: CSDN 作者: 明华_2019 链接: https://blog.csdn.net/u014743238/article/details/103687156

Why can I no longer fetch a Github repo via `svn:external`?

落花浮王杯 提交于 2019-12-25 03:14:02
问题 I used to be able to fetch projects from Github using SVN externals: svn:externals > https://github.com/J7mbo/twitter-api-php/tree/develop twitter-api-php Github had previously announced support for SVN, and this blog posts details the use of Github projects via SVN externals. This worked just fine previously, but I've noticed recently (the past couple of weeks?) that I can no longer fetch any project from Github: I get a Unable to connect to a repository at URL *** error. Other externals

Running NArrange from SVN pre-commit hook

喜夏-厌秋 提交于 2019-12-25 03:07:33
问题 I am trying to execute NArrange from SVN pre-commit hook using following command: "C:\Fullpath\narrange-console.exe" "C:\SolutionDir\SolutionFile.sln" /b /t It returns with an Error: "The hook script returned an error: " Any one any at rescue? EDIT: This hook are tortoisesvn client hooks. 回答1: The pre-commit hook is evaluated on the repository server; not on the client. And pre-commit hooks can't change what is to be committed. (They can only deny a commit if it is not valid for some rules).

Ability of Eclipse to work with remote SVN working copy

瘦欲@ 提交于 2019-12-25 02:58:18
问题 I could not find the same question on Internet although there are similar ones. I work with a local Eclipse (Kepler) + PDT on a Windows machine. There is on a remote Linux server. The server is not a part of our office network, so we can not access it as mapped drive. What I want to do is to checkout on the remote server a new SVN working copy from the SVN repo. Then I will create a project in Eclise. I would like this project to be connected to the SVN copy and to be able to commit, update

How to get the earliest checkout-able revision info from subversion?

老子叫甜甜 提交于 2019-12-25 02:44:09
问题 I want to check a svn url and to get the earliest revision, then checkout it, I don't want to use HEAD because I will compare the earliest revision to others. so I use "svn info" to get the "Last Changed Rev" for the url like this: D:\Project>svn info svn://.../branches/.../path Path: ... URL: svn://.../branches/.../path Repository Root: svn://yt-file-srv/ Repository UUID: 9ed5ffd7-7585-a14e-96b2-4aab7121bb21 Revision: 2400 Node Kind: directory Last Changed Author: xxx Last Changed Rev: 2396