Hi,
The Git-Webby v0.1.0 was released.
This is a great project that implements all features of Smart-HTTP for
Git. If you want manage your repositories under HTTP protocol instead
Git or SSH, then install the Git-Webby.
gem install git-webby
Create a directory for your Passanger site or simply create a Rackup
file (
configu.ru) and write the following instructions:
#
config.ru
require "git/webby"
Git::Webby::HttpBackend.configure do |server|
server.project_root = "/home/git/repositories"
server.git_path = "/usr/bin/git"
server.get_any_file = true
server.upload_pack = true
server.receive_pack = false
server.authenticate = true
end
$ rackup --port 2011 --daemonize
$ git clone
http://localhost:2011/yourcode.git
Just do it and works! Enjoy!