Ebb, even faster than Thin no comments
Ebb is new server to put in front of a rackable ruby application.
Have a look to the Ebb website to get some comparison with other app servers.
sudo gem install ebbWhat I needed to do before on Mac OS X (leopard with MacPorts):
sudo port install glib2Git: Easy way to setup a private remote repository 9 comments
Git is different from svn and create a private repository on a remote server too. No need of gitosis or git-daemon for this.
I start from an existing project and a server I already access to with ssh key.
First, initialize git in your project:
git init
git add .
git commit -m 'initial import'[update]
Then create a git copy of your project into a git archive my_project_folder.git.
git clone—bare my_project_folder my_project_folder.git
Copy this archive the .git folder to your remote server:
scp -rp .git user@server://path/to/repositories/my_project_folder.gitAdd this new repository in the config of your local project:
git remote add my_remote_repo ssh://server/path/to/repositories/my_project_folder.gitYou’re done. After a change you can commit and then push your change to the remote repo:
git commit -m "message for change log"
git push my_remote_repoUse your own parameters for:
- my_project_folder with the folder of your project
- path/to/repositories with the path to your repository on the remote server
- my_project_repo with the name you want for the remote repository, usually origin
If you need a public repository, have look to gitosis or git-daemon. Best is Github.




