Skip to content

Commit

Permalink
(accumulated minor docfixes)
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaramc committed Aug 3, 2012
1 parent 4e8c280 commit c5a65b9
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 8 deletions.
3 changes: 3 additions & 0 deletions emergencies.mkd
Expand Up @@ -146,6 +146,9 @@ the answer, but here's a list of files you should blow away.

* having the home directory in a partition that is mounted noexec.

* having the default shell be something like /bin/false, and/or not having
the default shell be part of /etc/shells.

## #ngp things that are not gitolite problems

There are several things that appear to be gitolite problems but are not. I
Expand Down
5 changes: 3 additions & 2 deletions g2migr.mkd
Expand Up @@ -90,9 +90,10 @@ Some of them have links where there is more detail than I want to put here.

* `GIT_PATH` **dropped**, **requires presetting**.

If you need its functionality, add these lines to the end of the rc file:
If you need this, manipulate the PATH environment variable directly. Just
put something like this at the end of the rc file:

$ENV{PATH}="...whatever you want...";
$ENV{PATH} = "/some/non-standard/path:$ENV{PATH}";
1;

### medium impact
Expand Down
4 changes: 3 additions & 1 deletion git-config.mkd
Expand Up @@ -37,7 +37,9 @@ examples). Other forms of the `git config` command (`--add`, the
> ----
You can also use the special value `%GL_REPO` in the string to save typing:
You can also use the special values `%GL_REPO` and `%GL_CREATOR` in the
string. The former is available to all repos, while the latter is only
available to [wild][] repos.

repo foo bar baz
config hooks.mailinglist = %GL_REPO-commits@example.tld
Expand Down
15 changes: 11 additions & 4 deletions index.mkd
Expand Up @@ -51,12 +51,19 @@ most people see:

## #contact contact

**NOTE** Unless you have very good reasons, please use the mailing list below
instead of mailing me personally. If you have to mail me, use the gmail
address instead of my work address.

* author: sitaramc@gmail.com, sitaram@atc.tcs.com

* general discussion list: gitolite@googlegroups.com
* list subscribe address: gitolite+subscribe@googlegroups.com
* announcements and notices list: gitolite-announce@googlegroups.com
* list subscribe address: gitolite-announce+subscribe@googlegroups.com
* mailing list for questions and general discussion:
* gitolite@googlegroups.com
* subscribe address: gitolite+subscribe@googlegroups.com

* mailing list for announcements and notices:
* gitolite-announce@googlegroups.com
* subscribe address: gitolite-announce+subscribe@googlegroups.com

* IRC: #git and #gitolite on freenode. Note that I live in India (UTC+0530
time zone).
Expand Down
2 changes: 1 addition & 1 deletion ips.mkd
Expand Up @@ -29,7 +29,7 @@ a detailed log of every command you typed, and the complete response you got.
I do not ask for this information to help you -- that's only a front. I
*know* these instructions work (at least on any Linux that already has git
installed), so the real reason is to find where you mistyped something and
mock you for that,
mock you for that.

### Assumptions

Expand Down
2 changes: 2 additions & 0 deletions master-toc.mkd
Expand Up @@ -105,6 +105,7 @@
* ([link][partial-copy]: faking selective READ control)
* using pubkeys obtained [from elsewhere][keysonly]
* ([link][pushcode]: updating code via the admin repo)
* giving users [their own repos][gh]

## interfacing with [external][] tools

Expand Down Expand Up @@ -140,6 +141,7 @@
* commands
* trigger programs
* sugar
* (appendix 1) notes on the INPUT trigger

## [non-core][] programs shipped with gitolite

Expand Down
5 changes: 5 additions & 0 deletions rules.mkd
Expand Up @@ -34,6 +34,11 @@ There are also other, less commonly used, [types of permissions][write-types].
A refex is an expression that matches the ref (i.e., branch or tag) being
pushed. See [this][refex] for more info.

You can also use [virtual refs][vref] to perform extra checks and controls
that you can't do with just the normal ref (like refs/heads/master) being
pushed. The most common example is restricting pushes by dir/file name, but
there are lots of other possibilities.

### when are the rules checked?

There are 2 places where access rules are checked.
Expand Down

0 comments on commit c5a65b9

Please sign in to comment.