Category: GIT

GIT, Linux

Installing a newer git version in Debian/Ubuntu

Introduction: In many cases where Git is involved it’s possible ethat your distribution doesn’t offer the version of git that is appropriate to the software you want to run. In this case you can install from sources. Here is one method fro example to install the version 2.4.3. Steps: Remove packaged Git apt-get remove git …

GIT, Linux

Installing GitLab (MySQL based) on Ubuntu 14.04.2 LTS Server

Note: Instructions based on but have been modified in a few places to make it work with mySQL: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md and https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/database_mysql.md Extra related Info: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md https://www.linode.com/docs/applications/development/gitlab-on-ubuntu-14-04 and https://www.digitalocean.com/community/tutorials/how-to-set-up-gitlab-as-your-very-own-private-github-clone#database-setup STEPS adduser –disabled-login –gecos ‘GitLab’ git apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate python-docutils …

GIT, Linux

Installing GITLAB-Omnibus in Debian Wheezy

Introduction: The instructions here have been based on the site: https://about.gitlab.com/downloads/. I did what is shown there but it didn’t work immediately. I had to do the following tweaks and then it all worked fine so far. IMPORTANT: In order to stay updated see the last par at the end of this article for instruction …

GIT, Linux

Installation of GIT, Gitolite and Gitweb in Debian Squeeze

Note: This tutorial is based on this very good site, thanks for the work: http://geroldm.com/2011/10/howto-setup-gitolite-in-debian/ Introduction: This is a simple and step by step tutorial on how to install GIT server and Gitolite in Debian Squeeze.Since GIT has no authentication/authrization methods on its own Gitolite does fill in. Gitolite allows to control new creation of …