May 26
This post show you the few needed commands to create a new branch in your colaborative repository:
- Clone the repository you want to branch
cd repositoryname
git push origin origin:refs/heads/branchname
git checkout --track -b branchname origin/branchname
Related Posts
Tags: branch, create, Git, How-to
May 22
Some months ago I installed a git repository in our Mac server to manage all our projects, but now we are migrating to another machine (another Mac). I think that it has taken me more time to set up all system this time than the first one, I couldn’t remember how to do it.
It is not going to happen next time! So I’m writing this small manual to not forget any step becouse I have had several problems configuring gitosis, a tool that helps hosting git repositories in an easy and safe way.
This how-to is an adaptation of gitosis readme applied to Mac OS.
Continue reading »
Related Posts
Tags: Git, git-daemon, gitosis, How-to, install, Leopard, Mac, read access, share, write access
May 19

Download git source code from project’s home page.
Unzip the tar file and open a Terminal app to type:
./configure --prefix=/usr
make
sudo make install
Now, git version control system is fully working.
Related Posts
Tags: Git, How-to, install, Leopard, Mac
May 18
This post describes step by step how to install Trac using MacOS X Leopard’s Apache and mod_python.

First of all, you must install mod_python. I have written a post in this blog explaning how. There are options like WSGI or FCGI modules, but I have chosen this one.
After this initial configuration, you must download and install Trac. You can do it by downloading this application from its home page but I’m going to choose the easiest way.
Mac OS X includes easy_install tool that lets us to automatically download, build, install python applications.
Continue reading »
Related Posts
Tags: Apache, guide, How-to, Leopard, Mac, mod_python, python, Trac, tracker
Recent Comments