diff options
author | James Moger <james.moger@gitblit.com> | 2013-11-25 00:00:41 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-11-29 11:05:51 -0500 |
commit | f19b78e12517db6c4dcbb1981423830ea39916b3 (patch) | |
tree | 018f2389bf235c25bb3a2eda73ae9ecd71d7f3a1 /src/site | |
parent | 04a98505a4ab8f48aee22800fcac193d9367d0ae (diff) | |
download | gitblit-f19b78e12517db6c4dcbb1981423830ea39916b3.tar.gz gitblit-f19b78e12517db6c4dcbb1981423830ea39916b3.zip |
Revised committer verification to require email address
Change-Id: I5298c93e03099813f5713a4effd87913429aa3dc
Diffstat (limited to 'src/site')
-rw-r--r-- | src/site/administration.mkd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/site/administration.mkd b/src/site/administration.mkd index dad4f414..1a5aca1a 100644 --- a/src/site/administration.mkd +++ b/src/site/administration.mkd @@ -94,7 +94,7 @@ You may optionally enable committer verification which requires that each commit **How is this enforced?**
-Bob must set his *user.name* and *user.email* values for the repository to match his Gitblit user account **BEFORE** committing to his repository.
+Bob must properly set his *user.name* and *user.email* values for the repository to match his Gitblit user account **BEFORE** committing to his repository.
```
[user "bob"]
@@ -109,7 +109,7 @@ or git config user.name bob
git config user.email bob@somewhere.com
-If the Gitblit account does not specify an email address, then the committer email address is ignored. However, if the account does specify an address it must match the committer's email address. Display name or username can be used as the committer name.
+The committer email address is required to be identical. Display name or username can be used as the committer name.
All checks are case-insensitive.
|