summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-10-17 14:19:58 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-10-17 14:19:58 -0400
commita6633f857bdcbdd3924a5b75337c1af0cf68d6cf (patch)
tree6419f1d268e0a438aaed7a593c14bc0bb2b15761
parent81fe6f775c02630421aba6d62e84e9849a9869c5 (diff)
layout
-rw-r--r--doc/tips/using_gitolite_with_git-annex.mdwn8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tips/using_gitolite_with_git-annex.mdwn b/doc/tips/using_gitolite_with_git-annex.mdwn
index c4df42cae..4dc6d8ae5 100644
--- a/doc/tips/using_gitolite_with_git-annex.mdwn
+++ b/doc/tips/using_gitolite_with_git-annex.mdwn
@@ -19,23 +19,23 @@ on Debian with apt-get, but the changes described can be made to any
gitolite installation, just with different paths.
1. Set `$GL_ADC_PATH` in `.gitolite.rc`, if you have not already done so.
-
+
echo '$GL_ADC_PATH = "/usr/local/lib/gitolite/adc/;' >>~gitolite/.gitolite.rc
2. Make the ADC directory, and a "ua" subdirectory.
-
+
mkdir -p /usr/local/lib/gitolite/adc/ua
3. Install the git-annex-shell ADC into the "ua" subdirectory and make it
executable.
-
+
cd /usr/local/lib/gitolite/adc/ua/
wget https://raw.github.com/sitaramc/gitolite/pu/contrib/adc/git-annex-shell
chmod +x git-annex-shell
4. Now all gitolite repositories can be used with git-annex just as any
ssh remote normally would be used. For example:
-
+
<pre>
# git clone gitolite@localhost:testing
Cloning into testing...