annotate docs/enable_git.rst @ 1145:9a9946320435

fixed ldap form, it doesn't validate the baseDN until enable checkbox is set
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 17 Mar 2011 21:05:14 +0100
parents e67786cb2afa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
811
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 .. _enable_git:
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 Enabling GIT support (beta)
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 ===========================
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6
1091
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
7 Git support in RhodeCode 1.1 was disabled due to current instability issues. However,
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
8 if you would like to test git support please feel free to re-enable it. To re-enable GIT support just
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
9 uncomment the git line in the file rhodecode/__init__.py
811
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 .. code-block:: python
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 BACKENDS = {
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 'hg': 'Mercurial repository',
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 #'git': 'Git repository',
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 }
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17
bb35ad076e2f docs updates
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 .. note::
1091
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
19 Please note that the git support provided by RhodeCode is not yet fully
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
20 stable and RhodeCode might crash while using git repositories. (That is why
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
21 it is currently disabled.) Thus be careful about enabling git support, and
e67786cb2afa - Further corrections.
jfh <jason@jasonfharris.com>
parents: 845
diff changeset
22 certainly don't use it in a production setting!