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
Recent Comments