linux安裝git

一、簡介

  Git是一款免費、開源的分佈式版本控制系統,用於敏捷高效地處理任何或小或大的項目。
  Git是一個開源的分佈式版本控制系統,用以有效、高速的處理從很小到很是大的項目版本管理。
  Git 是 Linus Torvalds 爲了幫助管理 Linux 內核開發而開發的一個開放源碼的版本控制軟件git

  安裝環境shell

  阿里雲ECS CentOS 7.4 64位bash

二、使用shell安裝git

  請將下載的shell與下面代碼保存到同一目錄分佈式

  cnl_function.sh下載阿里雲

 1 #!/bin/bash
 2 source ./cnl_function.sh
 3 
 4 #function of installing git
 5 install_git(){
 6     #download the compressed package
 7     cd /usr/local/src
 8     #if compressed package is empty then download
 9     [ -f git-2.2.1.tar.gz ] || wget https://www.kernel.org/pub/software/scm/git/git-2.2.1.tar.gz
10     check_ok
11 
12     tar -zxf git-2.2.1.tar.gz
13     check_ok
14 
15     [ -d /usr/local/git ] && mv /usr/local/git /usr/local/git_`date +%s`    
16     cd git-2.2.1
17     check_ok
18     
19     for p in expat-devel 
20     do 
21         myum $p
22     done
23 
24     make prefix=/usr/local/git all
25     make prefix=/usr/local/git install
26     check_ok
27     
28     if ! grep '^git:' /etc/group
29     then 
30         groupadd git
31     fi    
32     
33     if ! grep '^git:' /etc/passwd
34     then
35         useradd -m git -s /usr/local/git/bin/git-shell -g git
36     fi    
37     check_ok
38     ln -s /usr/local/git/bin/git /usr/local/bin/git
39     
40     echo "git is installed finish."    
41 }
42 
43 read -p "Enter  (Y) to start installation git :" n
44 if [ $n == 'Y' ]
45 then 
46     echo "Start installation==============================================================================================================================>"
47     install_git
48 else 
49     echo "Cancel the installation."
50 fi
51 
52  

  以下圖,我將上面代碼保存位cnl_install_git.sh spa

  

  執行腳本,按提示輸入便可命令行

  

  命令行執行版本控制

   git --version code

  

  安裝完成。blog

相關文章
相關標籤/搜索