comparison docs/enable_git.rst @ 811:bb35ad076e2f beta

docs updates
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 05 Dec 2010 17:22:57 +0100
parents
children a040597b070b
comparison
equal deleted inserted replaced
810:bd57d1cb9dc3 811:bb35ad076e2f
1 .. _enable_git:
2
3 Enabling GIT support (beta)
4 ===========================
5
6
7 Git support in RhodeCode 1.1 was disabled due to some instability issues, but
8 If You would like to test it fell free to re-enable it. To enable GIT just
9 uncomment git line in rhodecode/__init__.py file
10
11 .. code-block:: python
12
13 BACKENDS = {
14 'hg': 'Mercurial repository',
15 #'git': 'Git repository',
16 }
17
18 .. note::
19 Please note that it's not fully stable and it might crash (that's why it
20 was disabled), so be carefull about enabling git support. Don't use it in
21 production !