The distributed source code management system git
has quickly become very popular in Linux. It is tremendously powerful, with features far outstripping those in CVS or Subversion (SVN). It can also be a little daunting for people who have either never used source code management, or are very used to the different (and relatively primitive) functionality in CVS and SVN.
This document explains how to get started, without involving aHowtoll the stuff you don't need to know.
Install Git Packages
The easiest way to install everything you might want or need for git is to get the git-all
package. Use this command to do that:
su -c 'yum -y install git-all'
Set Global Configuration for Git
Git supports a ~/.gitconfig
file that holds some of your global settings. You can edit this file by hand, or you can use the git-config
program.