• 概要
Git(ギット)は分散型のバージョン管理システムです。

  • Gitのインストール
$ sh install_git.sh

install_git.sh
#!/bin/sh
 
wget http://www.kernel.org/pub/software/scm/git/git-1.7.3.tar.gz
tar zxvf git-1.7.3.tar.gz
cd git-1.7.3
./configure
make
sudo make install


最終更新:2010年10月12日 01:15