svn

Is there an encrypted version control system?

安稳与你 提交于 2019-12-17 23:30:24
问题 I am looking for an encrypted version control system . Basically I would like to Have all files encrypted locally before sending to the server. The server should never receive any file or data unencrypted. Every other feature should work pretty much the same way as SVN or CVS does today. Can anyone recommend something like this? I did a lot of searches but I cant find anything. 回答1: You should encrypt the data pipe (ssl/ssh) instead, and secure the access to the server. Encrypting the data

Subversion and shared files across repositories/projects?

谁都会走 提交于 2019-12-17 23:27:43
问题 I am migrating a client's SourceSafe repository (3 projects) to SVN and two of the projects share source files. (These projects are separate products - with different names and release versions, etc) Has SVN resolved this shortcoming? How do people generally handle this scenario? Of the options I know about/can think of Use the external or extern or whatever for SVN. I hear this is not a good option for various reasons Create a new project (maybe called shared) that contains the source. The

jenkins 自动从svn获取源码通过maven打包后发布到远端tomcat

半腔热情 提交于 2019-12-17 22:36:16
手动生成web的war源码文件。 mvn archetype:generate -DgroupId=com.companyname.automobile -DartifactId=trucks -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false 将生成文件夹trucks 然后将truck文件夹的内容上传到svn上面,再用jenkins构建。 jenkins安装插件 Deploy to container Plugin Maven Release Plug-in Plug-in Subversion Plug-in Maven Integration plugin 在192.168.56.20部署tomcat vim tomcat-users.xml 设置权限 <role rolename="manager-gui"/> <role rolename="manager-script"/> <role rolename="manager-jmx"/> <role rolename="manager-status"/> <user username="admin" password="admin" roles="manager-script,manager-jmx,manager-status

Is there a Subversion user's guide to Git? [closed]

混江龙づ霸主 提交于 2019-12-17 22:29:10
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I am a new user in Git world. I used to use Subversion (using TortoiseSVN) and it is pretty easy. I would like to try Git but i got

Get all branch names in SVN

点点圈 提交于 2019-12-17 22:22:06
问题 How do I get the list of all SVN branches which are more than x years old? I use SVN on CentOS, and I have sventon for viewing all the repository. 回答1: svn help ls If you'll use the URL of the repository branches root with verbose output, you'll get something like this: svn ls http://mayorat.ursinecorner.ru:8088/svn/Hello/branches/ --verbose 28 lazybadg фев 22 2011 ./ 28 lazybadg фев 22 2011 Leichtbau-Deutsch/ 26 lazybadg фев 22 2011 branche-francaise/ 25 lazybadg сен 14 2010 i18n/ The 3+4+5

Subversion repository statistics, other than StatSVN? [closed]

懵懂的女人 提交于 2019-12-17 22:13:25
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 months ago . Are there other open source/free packages for producing repository statistics for a Subversion repository? I've tried StatSVN but it seems to be incompatible with the logfiles for Subversion 1.5 and above. Note, I know that TortoiseSVN has some statistics built into its dialogs and repository browsing code, but

How do I configure the TortoiseSVN 'Global ignore pattern' properly?

浪尽此生 提交于 2019-12-17 22:09:38
问题 I would like TortoiseSVN (1.5.3) to ignore certain folders, their contents and certain other files wherever they might appear in my directory hierarchy but I cannot get the global ignore string right. Whatever I do, it either adds to much or ignores too much What is the correct 'Global ignore pattern' to ignore.... Folders : bin obj release compile Files : *.bak *.user *.suo Update: To help clarify... yes I am using this on windows. 回答1: Currently I have the following in my Global Ignore

SVN diff across 2 different repositories

自作多情 提交于 2019-12-17 22:08:10
问题 I have 2 repositories. As the trunk code was in one repository, which was protected, I did a checkout and then checked in to the other repository (as users did not have permission to the first protected one). Now the issue is that both the repositories have been worked on and we wish to finally merge the code/branch in the second unprotected one with the protected one. But, there will be conflicts in these. Is there a way to find out the diff for the 2 repository branches? Also, if there are

Force an SVN checkout command to overwrite current files

◇◆丶佛笑我妖孽 提交于 2019-12-17 22:06:49
问题 I'm adding an existing site to SVN. The files already exist on the webserver, and now identical copies (- configuration files) exist in the repository. I want to convert the webserver directory into an SVN working copy, but when I run: svn checkout http://path.to/svn/repo/httpdocs . I get the error: svn: Failed to add file '': object of the same name already exists How do I tell SVN to just overwrite those files whose contents are the same? 回答1: Try the --force option. svn help checkout gives

how to write a svn hook script

最后都变了- 提交于 2019-12-17 22:00:04
问题 I'm trying to write a post commit hook script for svn to export repository to team foundation server. (So when you commit a code, that latest version of the code gets copied to team foundation repo ) Only language I use is C++ and C and I have never written a script. Can anybody give me step by step instruction for this? which language to use, what to read etc... along with some example code possibly ?? Is it possible to write a hook script with c++? or should I learn how to use python or