[FishEye ナレッジ ベース]
When adding or managing a SVN (Subversion) repository, you can:
There are also the following SVN-specific actions:
On this page:
It is particularly important that you set up the correct branch and tag structure for your Subversion repositories. If FishEye does not know which files are tags and branches, it will treat all files as trunk files. This can significantly increase the effective size of your repository. This will increase initial scan time and impact runtime performance. Please refer to the instructions on tag and branch configuration.
In the majority of cases, indexing a small repository shouldn't take hours, and certainly not days. However, if you have a giant repository, have a slow remote host, you're using HTTP or HTTPS protocols, or if there is a problem with the symbolic setup of your repository, it could potentially take hours or even days. If in doubt, schedule the indexing to run over a weekend or extended maintenance period.
Using the 'file://' protocol to access your Subversion repository can be much faster than the other network protocols if your repository is on a local disk on the same server as FishEye.
ナレッジベース
You may find useful information in either the FishEye Subversion FAQ or the Subversion integration section of the FishEye Knowledge Base.
Screenshots: Adding a SVN repository
設定 | 説明 |
---|---|
Repository Type | Choose Subversion. |
名前 | A name for this repository. The name may contain alphanumeric, underscore, '-' or '.' characters. Use 'svn' if you can't think of a better name. |
説明 | A short description of this repository. |
SVN URL | The Subversion Repository Root URL to your repository, such as svn://svn.foo.com or file:///var/svn. If you are not sure what your repository root is, check the section below "Finding your Repository Root". |
パス | The sub-tree within your repository that FishEye should display. If this value is '.' (or empty), then the whole repository will be shown. |
Username/Password | The credentials to use if your repository requires authentication. See also SVN Authentication Issues. |
Store Diff Info | Enable this option if you are using the Subversion or Perforce SCM systems and making use of per-author line counts. Otherwise, enabling this option is not necessary. Read more information |
Enable Repository After Adding | Controls whether FishEye will immediately enable this repository, which starts the initial scan. If you wish to do some further configuration before the scan starts, then do not check. You can enable a repository later from the repository list. |
Once the repository is added you can click the repository name on the 'Repositories' screen to configure the following settings:
設定 | 説明 |
---|---|
Block Size | Controls how many revisions FishEye will pull down from the repository in one batch. Larger values can reduce the time it takes for FishEye to scan your repository for changes, but use more memory. Smaller values can reduce the amount of memory FishEye uses during scans. The default is 400. The minimum being 1. This field only accepts positive whole numbers. Requires a repository restart. |
Svn Operation Timeout | Sets the timeout value that FishEye imposes on Subversion operations. Operations which exceed this value are terminated. The default for operations is 1 hour. It can be changed to a different interval, for example: "2 days", "10 hours", or "20 minutes". The library that FishEye/Crucible uses (SVNKit) for SVN integration defines a timeout of 60 minutes by default if the property See this KB for more information: SVN operations taking longer than an hour time out |
Throttle connections-per-sec | If set, this allows FishEye to throttle how many connections it makes per second to the SVN server. Many systems use |
文字セット | The character set used to interpret and display text files. |
Access Code | The access code for the |
MD5 Access Code | The MD5 sum of the above Access Code. See also Subversion fisheye.access. (This field only appears if Access Code is set.) |
Set Access Property Command | The Subversion command to set the |
Start Revision | If set, the revision number from which FishEye will start indexing the repository. The default is to start scanning from the first revision in the repository. |
Initial Import | When a Start Revision is set, this setting controls how FishEye establishes the initial state of the repository. |
Follow Base Moves | If you have changed the location of your repository in your Subversion server over time, set this option to true. Doing so will cause FishEye to index your repository's full history across all its locations within your server. |
Use Built-in Symbolic Rules | Determines how FishEye attempts to understand the tag and branch structure of your Subversion repository. Read more information. |
If FishEye returns the error 'Authentication Cancelled', this may simply indicate an incorrect username or password.
次のコマンドを実行します。
svn info SVN_URL
Where SVN_URL is the complete URL of the repository you want to add.
You will get something like the following:
>svn info http://svn.example.com/svn5/ Path: svn5 URL: http://svn.example.com/svn5/ Repository Root: http://svn.example.com/ Repository UUID: ce062a09-193b-427a-a7b3-a85007076e5d Revision: 83 Node Kind: directory Last Changed Author: ryan Last Changed Rev: 83 Last Changed Date: 2009-05-07 10:48:41 +1000 (Thu, 07 May 2009)
Next to "Repository Root" is the URL you should define as your repository root. The path will be whatever is remaining.