comparison docs/usage/general.rst @ 2706:22f79562836c beta

Fixed validators for remote repos - use proper httppeer repo for mercurial 2.3 - validate git repos for remote auth - docs updates
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 08 Aug 2012 22:37:40 +0200
parents 926f55b038bc
children 5d12768a0aa1
comparison
equal deleted inserted replaced
2705:bf177b4981c3 2706:22f79562836c
81 81
82 Trending source files are calculated based on pre defined dict of known 82 Trending source files are calculated based on pre defined dict of known
83 types and extensions. If You miss some extension or Would like to scan some 83 types and extensions. If You miss some extension or Would like to scan some
84 custom files it's possible to add new types in `LANGUAGES_EXTENSIONS_MAP` dict 84 custom files it's possible to add new types in `LANGUAGES_EXTENSIONS_MAP` dict
85 located in `/rhodecode/lib/celerylib/tasks.py` 85 located in `/rhodecode/lib/celerylib/tasks.py`
86
87
88 Cloning remote repositories
89 ---------------------------
90
91 RhodeCode has an ability to clone remote repos from given remote locations.
92 Currently it support following options:
93
94 - hg -> hg clone
95 - svn -> hg clone
96 - git -> git clone
97
98
99 .. note::
100
101 - *`svn -> hg` cloning requires `hgsubversion` library to be installed.*
102
103 If you need to clone repositories that are protected via basic auth, you
104 might pass the url with stored credentials inside eg.
105 `http://user:passw@remote.server/repo, RhodeCode will try to login and clone
106 using given credentials. Please take a note that they will be stored as
107 plaintext inside the database. RhodeCode will remove auth info when showing the
108 clone url in summary page.