Created
January 7, 2010 17:18
-
-
Save qmx/271379 to your computer and use it in GitHub Desktop.
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
# instalando bibliotecas necessárias para compilar | |
sudo apt-get install build-essential libssl-dev zlib1g-dev libcurl4-openssl-dev libexpat-dev tk8.5-dev | |
# baixando o git atual | |
wget http://kernel.org/pub/software/scm/git/git-1.6.6.tar.bz2 | |
#descompacta | |
tar -jxvf git-1.6.6.tar.bz2 | |
cd git-1.6.6 | |
#compila | |
make prefix=/usr/local | |
#instala | |
sudo make prefix=/usr/local install | |
# se for máquina nova | |
# se commitar sem isso, vai aparecer como unknown user | |
git config --global user.name John Doe | |
git config --global user.email [email protected] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment