svn

tmatesoft.svn.core.SVNAuthenticationException: svn: E170001

久未见 提交于 2020-01-23 06:33:28
问题 We are working n a legacy project (maven) to setup devop. Starter with jenkins. Jenkins build is now without issues. But, while integrating sonarqube with jenkins, we are getting the following error: ERROR: Error during SonarQube Scanner execution java.lang.IllegalStateException: Error when executing blame for file src/main/java/com/acme/acq/scavenger/AssetCmboItem.java at org.sonar.plugins.scm.svn.SvnBlameCommand.blame(SvnBlameCommand.java:100) at org.sonar.plugins.scm.svn.SvnBlameCommand

Delphi SVN integration that works with SVN 1.7?

。_饼干妹妹 提交于 2020-01-23 05:45:07
问题 I've just upgraded my SVN repository from 1.6 to 1.7. A major change to the repository format in 1.7 is that the ".svn" folders are no longer stored in each subdirectory; only in the root folder of the repository. Unfortunately this seems to confuse the JCL SVN integration I have been using. It seems to think my files are not under source control. Is there any Delphi SVN integration that works with 1.7 now or that has plans to support it in the near future? I am using Delphi 2010. UPDATE

converting svn repo to git using reposurgeon

馋奶兔 提交于 2020-01-23 04:54:09
问题 I am trying to convert an svn repo to git using reposurgeon. Here is what I did ( have a repo.map file that has the svn name -> git name mapping): svnadmin dump /home/subversion > repo.svn reposurgeon "verbose 1" "repo.svn" "authors read" "write repo.fi" reposurgeon runs for many hours (lots of swapping as it is a 12GB dump file), and everything looks good. Here is the output I get: reposurgeon: verbose 1 reposurgeon: from repo.svn...copynodes+filemaps+copysets+commits+branches+parents+root

svn 1.7 error E200009 Could not add all targets because some targets are already versioned

余生长醉 提交于 2020-01-23 04:33:40
问题 I did a clean checkout of a repository then every day I have an hudson job that runs a script to backup the configuration. Part of the script is to add *.xml $ svn add *.xml svn: warning: W150002: '/data/hudson/config.xml' is already under version control svn: E200009: Could not add all targets because some targets are already versioned svn: E200009: Illegal target for the requested operation The warning is fine because some of the xml files are already under version control but I don't

从GitHub存储库下载单个文件夹或目录

痴心易碎 提交于 2020-01-23 02:35:47
如何从 GitHub 上托管的远程Git存储库中仅下载特定文件夹或目录? 假设示例GitHub存储库位于此处: git@github.com:foobar/Test.git 其目录结构: Test/ ├── foo/ │ ├── a.py │ └── b.py └── bar/ ├── c.py └── d.py 我只想下载 foo 文件夹,而不克隆整个Test项目。 #1楼 这是SVN比Git更好的少数几个地方之一。 最后,我们倾向于以下三种选择: 使用wget从GitHub抓取数据(使用原始文件视图)。 让上游项目将所需的数据子集发布为构建工件。 放弃并使用完整的结帐。 在第一个版本中这是一个很大的成功,但是除非您获得大量流量,否则在后续版本中不会有太多麻烦。 #2楼 如果要下载的目录是一个单独的库,最好创建另一个git repo,然后再使用git子模块功能。 当然,您必须是您想要的初始回购的所有者 #3楼 对于通用git Repo: 如果要下载文件,而不是使用历史记录克隆存储库,则可以使用 git-archive 。 git-archive 创建git存储库的压缩zip或tar存档。 一些使它特别的东西: 您可以选择git存储库中要归档的文件或目录。 它不会在运行它的存储库中存档 .git/ 文件夹或任何未跟踪的文件。 您可以存档特定的分支,标记或提交。

Backup Assembla hosted SVN repositories to windows

时光毁灭记忆、已成空白 提交于 2020-01-23 01:00:19
问题 Right now I have all of my files hosted using Assembla.com 's free hosting for svn repositories. I want to download all of my repositories to my local computer to store them as backups. Are there any applications built for windows that simply let me point to the svn repository and download the files to back them up? Or is there a better way of backing up my repository? All of the other questions I've seen on SO are talking about if you have the server running on your own machine. Thanks in

Import files directly to SVN repo without checking out first

两盒软妹~` 提交于 2020-01-22 23:30:53
问题 I am using SVN and have a repository on a remote machine. Sometimes, when working on my local machine I realize that I need to add some new files to the repo. The usual procedure I know would then be: at the current folder on my local machine checkout the whole SVN repo enter there copy the interesting file here commit But this can be a bit tedious. I wonder if somehow, I can omit steps 1 to 3 and import the "interesting" file to SVN directly without necessity of checking out the repo first?

How to move svn folder one level up

一笑奈何 提交于 2020-01-22 18:21:48
问题 I need to move svn folder to one level up and keep all history All files and directories from https://myserver.com/svn/Project/trunk/ into https://myserver/svn/Project/ I use a command: svn move https://myserver.com/svn/Project/trunk/ https://myserver/svn/Project/ but it says: svn: Cannot move path 'https://myserver.com/svn/Project/trunk/' into itself Who knows how can I resolve that problem? Thanks! 回答1: If you are willing to use TortoiseSVN then you can simply move the folder with the

Resharper and TortoiseSVN

女生的网名这么多〃 提交于 2020-01-22 17:40:30
问题 Is there any good way to deal with the class renaming refactor from Resharper when the file is under source control and TortoiseSVN is the client. I have am trying VisualSVN right now but I haven't had the need to rename anything recently. I don't want to change our repository just to try this out. Also not sure if this feature alone is worth the cost of VisualSVN. Update: I have uninstalled the trial of VisualSVN and tried AhknSVN. I seems to provided the same functionality so far. I know

How to use git-svn with svn+ssh url

江枫思渺然 提交于 2020-01-22 16:26:05
问题 I like to use in cygwin the git svn clone command with our company svn repository. The url for this is svn+ssh://svn.<url>.com/repo under this I can see with e.g. eclipse the repository with trunk/tags/branches Running git svn clone svn+ssh://svn.<url>.com/repo No such file or directory: Unable to connect to a repository at URL 'svn+ssh://svn..com/repo': Error in child process: exec of 'ssh' failed: No such file or directory at /usr/lib/git-core/git-svn line 2299 Any one can help me what and