Difference between revisions of "Git: compile dari source code"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
Onnowpurbo (talk | contribs)  | 
				Onnowpurbo (talk | contribs)   (→Build)  | 
				||
| Line 27: | Line 27: | ||
  sudo make install  |   sudo make install  | ||
| + |  cd /usr/local/src/git-core-0.99.6  | ||
| + |  ./configure  | ||
| + |  make  | ||
| + |  sudo make install  | ||
==Cek Versi==  | ==Cek Versi==  | ||
Revision as of 16:27, 19 July 2014
Sumber: http://www.mikepilat.com/blog/2011/06/how-to-build-git-from-source-on-ubuntu/
Buang git
sudo apt-get remove --purge git git-core apt-get autoremove
Install aplikasi pendukung
sudo apt-get install bzip2 curl ssh expat zlib1g zlib1g-dev tk python
Download source code git
cd /usr/local/src curl -O https://www.kernel.org/pub/software/scm/git/git-2.0.2.tar.gz tar zxvf git-2.0.2.tar.gz
curl -O https://www.kernel.org/pub/software/scm/git/git-core-0.99.6.tar.gz tar zxvf git-core-0.99.6.tar.gz
Build
cd /usr/local/src/git-2.0.2 ./configure make sudo make install
cd /usr/local/src/git-core-0.99.6 ./configure make sudo make install
Cek Versi
git --version