svn

VCsrepo specifying ssh key to use

[亡魂溺海] 提交于 2019-12-22 12:38:13
问题 I am trying to write a module in which puppet will be fetching an SVN repo and i want it to use a specific key in order to fetch the repository. How can I specify a ssh key to in SVN VCSrepo? On the documentation it says we can use vcsrepo for managing ssh keys but there isn't any example for SVN on how to do it at their website 回答1: Well, it's a little confusing, to be sure. The documentation states When your source uses SSH, such as 'username@server:…', you can manage your SSH keys with

VCsrepo specifying ssh key to use

南楼画角 提交于 2019-12-22 12:38:13
问题 I am trying to write a module in which puppet will be fetching an SVN repo and i want it to use a specific key in order to fetch the repository. How can I specify a ssh key to in SVN VCSrepo? On the documentation it says we can use vcsrepo for managing ssh keys but there isn't any example for SVN on how to do it at their website 回答1: Well, it's a little confusing, to be sure. The documentation states When your source uses SSH, such as 'username@server:…', you can manage your SSH keys with

Is it possible to retroactively add history that would have been there if an svn cp had been performed instead of a cp?

倖福魔咒の 提交于 2019-12-22 12:24:39
问题 I have a project with one directory that was originally (several hundred commits ago) copied verbatim from another directory, but svn cp wasn't used so there's a disconnect in history. Is it possible to connect the two directories at the initial copy point now, or is it too late? 回答1: Let me guess what you're talking about: Directory foo is in Subversion In revision #100, someone copied foo to bar They then added bar to the repository and did a commit and created revision #101. Now Subversion

Is it possible to retroactively add history that would have been there if an svn cp had been performed instead of a cp?

北城以北 提交于 2019-12-22 12:24:05
问题 I have a project with one directory that was originally (several hundred commits ago) copied verbatim from another directory, but svn cp wasn't used so there's a disconnect in history. Is it possible to connect the two directories at the initial copy point now, or is it too late? 回答1: Let me guess what you're talking about: Directory foo is in Subversion In revision #100, someone copied foo to bar They then added bar to the repository and did a commit and created revision #101. Now Subversion

Jenkins Pipeline - SVN polling

China☆狼群 提交于 2019-12-22 11:37:10
问题 I have a Jenkins pipeline template which uses a Jenkins file in Subversion. The Jenkins file has the svn checkout method to check out the real application. (The svn url of real application is passed from jenkins env variables) I need to do the svn polling of the real application and trigger the job when there is a change in real application. When I use the polling option in jenkins template , it always do the polling of JenkinsFile in Subversion. Is there any way that I can poll the real

Unable to connect to svn repository with XCode 4

懵懂的女人 提交于 2019-12-22 11:35:34
问题 After installing XCode 4 I went to the Organizer window to try to verify that the svn repositories that were set up in XCode 3 were recognized. The repositories were there but whenever I clicked on one I would always get the 'busy-wait' spinner. Thinking that XCode 4 didn't properly import the repository information, I went through the steps to re-create one of the repositories from scratch. I'm pretty sure I've input all the details correctly and I know I'm using the right password, but

SVN pre-commit issue

你离开我真会死。 提交于 2019-12-22 11:35:17
问题 I found this script on the net and few ppl had said that it was working for their repository. The script is to allow a pre-commit check to enforce checking of comments while checking.. The problem is I added it to the hooks directory in SVN and now all commits (even the ones with comment) are failing with this error message "Commit blocked by pre-commit (exit code 255) with no output" Now, I cannot change the script or delete it since I get the same error. Any suggestions on how to revert

SVN Pre Commit Hooks

别来无恙 提交于 2019-12-22 11:05:18
问题 I am currently trying to extend our already existing (and working) pre commit batch file for committing to SVN. The first part blocks any commit that does not have comments and works as expected. The second part is an attmept to block users committing SUO files, however this is currently blocking all commits. My understanding of DOs scripting isn't great so I suspect it may be my usage of the FindStr? Can anyone help? "C:\Program Files\VisualSVN Server\bin\svnlook.exe" log -t %2 %1 | FindStr

How to set up SVN with files that are in an /htdocs directory structure

丶灬走出姿态 提交于 2019-12-22 10:58:39
问题 I'm having a slight issue wrapping my head around on how to set up Subversion when working with php files. I store all my files at c:\www[nameOfProject]\htdocs and I setup virtual hosts for each project. (c:\www\project1\htdocs\index.php maps to http://localhost/project1/index.php). How do you guys handle using SVN? Lets say I have c:\svnrepos\ which is where I store each repo for each project. Now ideally I would want to check out from the repo at c:\svnrepos\project1 to c:\www\project1

SVN project structure

徘徊边缘 提交于 2019-12-22 10:54:25
问题 We are moving to SVN from VSS and are debating the project structure. We are debating two proposals displayed below. No. 1 seems simpler for development support since a Project release version is tied to a tag and the developer would only need to perform an update on that tag to immediately get to work. No. 2 insures that all Projects and Dependencies can be developed independently but building a particular release version means knowing the tags of the Project and all it's Dependencies. Are