Tag Archives: repository

How to split a git repository into two

First of all, as a disclaimer: I am not a git guru but. It seems this subject is somehow obscure and it required googling around almost one day. Well, let’s get started. I assume that we have the following structure: repo1.git/                 .git/                 directory1/                 directory2/                 directory3/ and we want: repo2.git/                 .git/ … Continue reading How to split a git repository into two

How to install mercurial on debian squeeze

This document describes how to install and configure mercurial on linux debian squeeze. With minor changes you can use this procedure on different linux distributions. 1. Install required packages [codesyntax lang=”bash”] aptitude install mercurial libapache2-mod-wsgi [/codesyntax] 2. Create repositories directories mkdir -pv /repositories chown -R www-data:www-data /repositories cd /repositories 3. Configure hgweb.cgi script in order … Continue reading How to install mercurial on debian squeeze