From 2d85d43d61518d26be33a0e7759a3d4f4a627452 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Fri, 21 Dec 2012 16:47:46 -0500
Subject: [PATCH] Fixed regression in repository cache wrt repo names with case (issue-172)

---
 docs/02_federation.mkd |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/docs/02_federation.mkd b/docs/02_federation.mkd
index 0aaae4f..d83a9e3 100644
--- a/docs/02_federation.mkd
+++ b/docs/02_federation.mkd
@@ -191,7 +191,7 @@
 
 ## Federation Pull Registration Keys
 
-<table>
+<table class="table">
 <tr><th>federation.N.url</th>
 <td>string</td>
 <td>the url of the origin Gitblit instance <em>(required)</em></td>
@@ -321,6 +321,13 @@
 
 By default this tool does not daemonize itself; it executes and then quits.  This allows you to use the native scheduling feature of your OS.  Of course, if you'd rather use Gitblit's scheduler you may use that by specifying the `--daemon` parameter.
 
+### http.sslVerify
+
+If you are pulling from a Gitblit with a self-signed SSL certificate you will need to configure Git/JGit to bypass certificate verification.  
+([Git-Config Manual Page](http://www.kernel.org/pub/software/scm/git/docs/git-config.html))  
+
+<pre>git config --global --bool --add http.sslVerify false</pre>
+
 ### Command-Line Parameters
 Instead of using `federation.properties` you may directly specify a Gitblit instance to pull from with command-line parameters.
 

--
Gitblit v1.9.1