diff options
author | James Moger <james.moger@gitblit.com> | 2013-10-25 15:25:02 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-10-25 18:32:13 -0400 |
commit | 6c4be170559efa112bb92cd1676543e86850e976 (patch) | |
tree | c919d115bae4e1a801e545009e1f17fd6f6f7e40 /src/site/administration.mkd | |
parent | 3079105705d76ff0fbfcc755825aa75b0b6ef01a (diff) | |
download | gitblit-6c4be170559efa112bb92cd1676543e86850e976.tar.gz gitblit-6c4be170559efa112bb92cd1676543e86850e976.zip |
Documentation
Change-Id: I717e13d1f852a4adf50b547f4769dd62da2384ce
Diffstat (limited to 'src/site/administration.mkd')
-rw-r--r-- | src/site/administration.mkd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/site/administration.mkd b/src/site/administration.mkd index 7ed40ebe..dad4f414 100644 --- a/src/site/administration.mkd +++ b/src/site/administration.mkd @@ -95,15 +95,15 @@ 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.
-<pre>
+
+```
[user "bob"]
displayName = Bob Jones
emailAddress = bob@somewhere.com
-</pre>
-<pre>
+```
+
git config user.name "Bob Jones"
git config user.email bob@somewhere.com
-</pre>
or
git config user.name bob
|