gitolite/doc/cust.mkd

72 lines
2.5 KiB
Markdown
Raw Normal View History

2012-03-16 02:54:47 +01:00
# customising gitolite
2012-03-26 08:23:00 +02:00
Much of gitolite (g3)'s functionality comes from programs and scripts that are
not considered "core". This keeps the core simpler, and allows you to enhance
gitolite for your own purposes without too much fuss.
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
## types of non-core programs
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
There are 5 basic types of non-core programs.
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
* *commands* can be run from the shell command line. Those listed in the
COMMANDS hash of the rc file can also be run remotely.
* *hooks* are standard git hooks; see below.
* *sugar scripts* change the conf language for your convenience. The word
sugar comes from "syntactics sugar".
* *triggers* are to gitolite what hooks are to git. I just chose a
different name to avoid confusion and constant disambiguation in the docs.
* **VREFs** are extensions to the access control check part of gitolite.
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
## #commands gitolite "commands"
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
Gitolite comes with several commands that users can run. Remote user run the
commands by saying:
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
ssh git@host command-name [args...]
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
while on the server you can run
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
gitolite command [args...]
2012-03-16 02:54:47 +01:00
2012-03-26 08:23:00 +02:00
Very few commands are designed to be run both ways, but it can be done, by
checking for the presence of env var `GL_USER`.
You can get a **list of available commands** by using the `help` command.
Naturally, a remote user will see a much smaller list than the server user.
You add commands to the "allowed from remote" list by adding its name (or
uncommenting it if it's already added but commented out) to the COMMANDS hash
in the [rc][] file.
If you write your own commands, put them in src/commands.
## #hooks hooks and gitolite
Gitolite uses the `update` hook for all repos. In addition, it uses the
`post-update` hook for the gitolite-admin repo.
If you want to add your own hook, it's easy as long as it's not the 'update'
hook. Just add it to `$HOME/.gitolite/hooks/common` and run `gitolite setup`.
The rest is between you and 'man githooks' :-)
## #sugar syntactic sugar
Sugar scripts help you change the perceived syntax of the conf language. The
base syntax of the language is as described [here][conf], so sugar scripts
take something *else* and convert it into that.
That way, the admin sees additional features (like allowing continuation
lines), while the parser in the core gitolite engine does not change.
If you want to write your own sugar scripts, please read the "your own sugar"
section in [dev-notes][] first then email me.
## triggers
Triggers have their own [document][triggers].
## VREFs
VREFs also have their own [document][vref].