May 26

This post show you the few needed commands to create a new branch in your colaborative repository:

  1. Clone the repository you want to branch
  2. cd repositoryname
  3. git push origin origin:refs/heads/branchname
  4. git checkout --track -b branchname origin/branchname

Related Posts

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

May 19

gitlogo

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