Skip to content

Instantly share code, notes, and snippets.

@ytsuyuzaki
Created February 8, 2013 03:30
Show Gist options
  • Select an option

  • Save ytsuyuzaki/4736383 to your computer and use it in GitHub Desktop.

Select an option

Save ytsuyuzaki/4736383 to your computer and use it in GitHub Desktop.
gitをhomeディレクトリにソースインストール
mkdir -p $HOME/local/bin
mkdir -p $HOME/local/src
cd $HOME/local/src/
wget http://git-core.googlecode.com/files/git-1.8.1.3.tar.gz
tar zxvf git-1.8.1.3.tar.gz
cd git-1.8.1.3
./configure \
--prefix=$HOME/local
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment