git --version #檢查是否有安裝
接下來就是看版本了 , centos5 yum源中沒有git, 所以要預裝一系列的依賴包,
centos6 就不一樣了 yum 中有git版本
yum -y install
git#安裝
github等需要的git版本最低都不能低於1.7.2 。
安裝完成之後檢查 版本
預設就是1.8
命令:shell yum -y install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-extutils-makemaker
shell unzip v2.3.0.zip
shell cd git-2.3.0
shell make prefix=/usr/local/git all
shell make prefix=/usr/local/git install
沒有 unzip 命令? yum install -y unzip zip 安裝unzip
可以用下面的命令檢視git所在的路徑:whereis git
我們要把編譯安裝的git路徑放到環境變數裡,讓它替換"/usr/bin"下的git。
為此我們可以修 改「/etc/profile」檔案(或者/etc/bashrc檔案)。
vim /etc/profile
然後在檔案的最後一行,新增下面的內容,然後儲存退出。
export path=/usr/local/git/bin:$path
重新整理資源
source /etc/profile
再看 版本
1.配置ssh免密
git config --global user.name "名字"
#設定自定義的暱稱
git config --global user.user.email "郵箱"
#設定自己的郵箱
git config --global color.ui true
#設定命令**多顏色顯示
git config --list #列出以上配置的資訊
ssh-keygen -t rsa -c "郵箱"
#生成鑰匙對
會告訴你鑰匙對在位置
生成公鑰之後(.pub 結尾檔案) 和gitee\github裡面公鑰對應就行
2.切換到本地倉庫目錄
linux下的git安裝及配置
一.yum安裝方式 1.安裝 yum install curl devel expat devel gettext devel openssl devel zlib devel yum y install git core git version git version 1.7.1 2.配置 如果用...
linux下的git安裝及配置
一.yum安裝方式 1.安裝 yum install curl devel expat devel gettext devel openssl devel zlib devel yum y install git core git version git version 1.7.1 2.配置 如果用...
Linux下git的安裝及簡單使用
html view plain copy root localhost yum install git root localhost git config global user.name your name root localhost git config global user.email e...