Files @ 87f0800abc7b
Branch filter:

Location: kallithea/docs/usage/enable_git.rst

87f0800abc7b 740 B text/prs.fallenstein.rst Show Annotation Show as Raw Download as Raw
Marcin Kuzminski
#227 Initial version of repository groups permissions system
- implemented none/read/write/admin permissions for groups
- wrote more tests for permissions, and new permissions groups
- a lot of code garden, splitted logic into proper models
- permissions on groups doesn't propagate yet to repositories
- deprecated some methods on api for managing permissions on
repositories for users, and users groups
.. _enable_git:

Enabling GIT support (beta)
===========================


Git support in RhodeCode 1.1 was disabled due to current instability issues. 
However,if you would like to test git support please feel free to re-enable it. 
To re-enable GIT support just uncomment the git line in the 
file **rhodecode/__init__.py**

.. code-block:: python
 
   BACKENDS = {
       'hg': 'Mercurial repository',
       #'git': 'Git repository',
   }

.. note::
   Please note that the git support provided by RhodeCode is not yet fully
   stable and RhodeCode might crash while using git repositories. (That is why
   it is currently disabled.) Thus be careful about enabling git support, and
   certainly don't use it in a production setting!