Project

General

Profile

RedmineRepositories » History » Version 29

Burt Culver, 2010-04-22 20:50

1 1 Jean-Philippe Lang
h1. Repositories
2
3 19 Mischa The Evil
{{>toc}}
4 1 Jean-Philippe Lang
5 19 Mischa The Evil
h2. General information
6 1 Jean-Philippe Lang
7 24 Alex Bevilacqua
Redmine natively supports integration with different SCM-tools: "Subversion":http://subversion.tigris.org/, "CVS":http://www.nongnu.org/cvs/, "Mercurial":http://www.selenic.com/mercurial/, "Darcs":http://darcs.net/, "Git":http://git-scm.com, and "Bazaar":http://bazaar-vcs.org/.
8 19 Mischa The Evil
9
Note that you need to install the appropriate binaries on your Redmine host and make sure that these binaries are available in the @PATH@ environment variable:
10
11 9 Jean-Philippe Lang
|*SCM*|*Tested with*|*Comments*|
12 17 Jean-Philippe Lang
|Subversion|1.3 & 1.4 & 1.5 & 1.6|1.3 or higher required|
13 9 Jean-Philippe Lang
|CVS|1.12.12|1.12 required, won't work with CVSNT|
14
|Mercurial|0.9.3| |
15 27 Fabio Leitao
|Bazaar|1.0.0.candidate.1 & 2.0.4| |
16 1 Jean-Philippe Lang
|Darcs|1.0.7||
17 16 Jean-Philippe Lang
|Git|1.5.4.2||
18 9 Jean-Philippe Lang
19 19 Mischa The Evil
For example, if you want to access Subversion repositories in Redmine, you'll have to install the svn binaries on the Redmine host. Redmine currently doesn't make use of the Ruby Bindings for Subversion.
20 1 Jean-Philippe Lang
21
h2. Attaching an existing repository to a project
22
23
In the project settings, make sure that the 'Repository' module is enabled and go to the 'Repository' tab.
24
Select the SCM that corresponds to your repository and enter the path or URL of your repository.
25
26
*Important*: When you first browse the repository, Redmine retrieves the description of all of the existing commits and stores them in the database.
27
This is done only once per repository but can very long (or even time out) if your repository has hundreds of commits.
28
29
To avoid this, you can do it offline.
30
After having your repository declared in Redmine, run the following command:
31 19 Mischa The Evil
<pre>
32
$ ruby script/runner "Repository.fetch_changesets" -e production
33
</pre>
34 1 Jean-Philippe Lang
35
All commits will be retrieved in the Redmine database.
36
37 28 Enderson Maia
Since Redmdine 0.9.x, you can use a link to execute fetch_changesets for on specific project, or all.
38
39
http://redmine.example.com/sys/fetch_changesets (=> fetches changesets for all active projects)
40
http://redmine.example.com/sys/fetch_changeseys?id=foo (=> fetches changesets for project foo only)
41
42
43 1 Jean-Philippe Lang
h3. Subversion repository
44
45 19 Mischa The Evil
The usual protocols are supported (eg. @http:@, @svn:@, @file:@), just enter the URL of the repository.
46 1 Jean-Philippe Lang
47 19 Mischa The Evil
For example:
48 1 Jean-Philippe Lang
<pre>
49
http://host/path/to/the/repository
50
</pre>
51
52 5 Jean-Philippe Lang
You can specify a username and password if the repository requires authentication.
53
54 1 Jean-Philippe Lang
Note: if you want to access the repository using @svn+ssh://@, you'll have to configure svn+ssh to be non-interactive.
55
This requires to setup a public/private key pair for ssh authentication.
56
57
h3. CVS repository
58
59
Enter:
60
* the URL of the repository (it can be either a path or a connection string, eg. @:pserver@).
61
* the module name
62 15 Azamat Hackimov
63 19 Mischa The Evil
For example:
64
<pre>
65
:pserver:login:password@host:/path/to/the/repository
66
</pre>
67 10 Thomas Lecavelier
68 19 Mischa The Evil
h3. Git repository
69 1 Jean-Philippe Lang
70 19 Mischa The Evil
h4. Local environment setup
71 10 Thomas Lecavelier
72 19 Mischa The Evil
Redmine requires a *bare* and *local* repository to enable browsing through Redmine.
73
74 21 Mischa The Evil
Imagine you want to browse the to-do list manager project "Donebox": its clone URL is @git://github.com/ook/donebox.git@.
75 19 Mischa The Evil
On the server where you're running Redmine, create a directory accessible by the user running your Redmine server:
76 10 Thomas Lecavelier
<pre>
77
$ sudo mkdir -p /var/redmine/git_repositories
78
$ sudo chown rails:rails /var/redmine/git_repositories
79
$ cd /var/redmine/git_repositories
80
</pre>
81
82 19 Mischa The Evil
Note the second line: it changes the ownership of the newly created directory to the user @rails@ and the group @rails@. Of course, you have to replace it according to your server settings (it can be @www-data@, @apache@ or when you are having a very bad sysadmin: @root@). Keep in mind that this user needs to have the (local-)permissions to run the @git@ command.
83 1 Jean-Philippe Lang
84 19 Mischa The Evil
h4. Create the bare repository
85
86
After the preceding steps have been taken it is time to create our bare repository:
87 1 Jean-Philippe Lang
<pre>
88
$ pwd
89
/var/redmine/git_repositories
90 29 Burt Culver
$ git clone --bare git://github.com/ook/donebox.git donebox.git
91
Initialized empty Git repository in /var/redmine/git_repositories/donebox.git/
92 1 Jean-Philippe Lang
remote: Counting objects: 401, done.
93
remote: Compressing objects: 100% (246/246), done.
94
remote: Total 401 (delta 134), reused 401 (delta 134)
95
Receiving objects: 100% (401/401), 179.55 KiB | 185 KiB/s, done.
96
Resolving deltas: 100% (134/134), done.
97 29 Burt Culver
$ cd donebox.git
98
$ git remote add origin git://github.com/ook/donebox.git
99 1 Jean-Philippe Lang
</pre>
100 10 Thomas Lecavelier
101 29 Burt Culver
Our bare repository is now created successfully! Now go to your Redmine project settings, go to the repositories tab and choose @git@ as the SCM, then put in the "Path to .git directory" (in our example this is @/var/redmine/git_repositories/donebox.git/@) and save the settings. Have a look at your repository tab: you should now be able to browse your repository successfully.
102 10 Thomas Lecavelier
103 29 Burt Culver
Note: of course, this git repository won't update by itself. You'll have to @git fetch@ it regulary by hand, set up a cron job which will execute the @git fetch@-command automatically for you or use a post-receive hook, like this one : 
104 25 Benoit Bénézech
105
<pre>
106
echo "Post receive-hook => updating Redmine repository"
107 1 Jean-Philippe Lang
sudo -u my_redmine_user -p secret perl -we '`cd /redmine/repositories/my_repo.git && git fetch && git reset refs/remotes/origin/master`'
108
</pre>
109 25 Benoit Bénézech
110
Note the git reset, you'll *need it* to update the git tree and see your changes in the Repository view.
111 29 Burt Culver
112
If you are using github, you can use the [[Plugin_List#Github-Hook-plugin|Github Hook Plugin]]
113 19 Mischa The Evil
114 22 Babar O'Cap
h4. Bare repository on Windows
115
116
If your bare repository is install on *Windows*, adding :
117
<pre>;%GIT_PATH%\cmd;%GIT_PATH%\bin;</pre> to your %%PATH%% environment variable.
118
Where %%GIT_PATH%% is the install directory of Git (eg: _C:/Git_)
119
120 19 Mischa The Evil
h3. Mercurial repository
121
122 23 Yannick Warnier
To synchronize with a Mercurial repository, you will have to have a local clone of the repository on the same server you have Redmine installed on. Let's say you put Redmine in /var/www/redmine.example.com/www and have put your mercurial repository in /var/www/sources.example.com/repo/example, you would have to select *Mercurial* as a SCM, then enter */var/www/sources.example.com/repo/example* in the repository text box.
123
124
This will start checking out the Mercurial repository, and you won't see the results straight away. Wait for a few seconds (or possibly minutes), and click the *Repository* tab of your project (not of your configuration settings). You should now see the results appear.
125 19 Mischa The Evil
126
h3. Bazaar repository
127
128 26 David Muir
Put in the full path to your repository in "Root directory"
129
i.e. /home/username/bzr/repo/trunk
130
131
132
You'll need to make sure that bzr and bzrlib can be found in ENV['PATH'] and ENV['PYTHONPATH'] respectively.
133
ie. edit config/environment.rb and add:
134
135
<pre>
136
ENV['PYTHONPATH'] = '/path/to/pythonlib'
137
ENV['PATH'] = "#{ENV['PATH']}:/path/to/bzr/bin"
138
</pre>
139 19 Mischa The Evil
140 1 Jean-Philippe Lang
h3. Darcs repository
141 21 Mischa The Evil
142
TBD
143
144
h2. Repository user-mapping
145 19 Mischa The Evil
146
TBD