Created
February 8, 2013 03:30
-
-
Save ytsuyuzaki/4736383 to your computer and use it in GitHub Desktop.
gitをhomeディレクトリにソースインストール
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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