本文環境centos6.8的虛擬機器
**centos6.10的阿里雲伺服器 **
在虛擬機器命令列中輸入
ssh [email protected]這裡的1.1.1.1就是你的伺服器公網ip位址
輸入密碼進入伺服器
新建資料夾
cd /mkdir developer
cd developer
mkdir setup
scp /usr/downloads/git-2.8.0.tar.gz [email protected]:/setup這裡的 /usr/downloads/是你虛擬機器上git安裝包的所在位置
root 是你伺服器的使用者名稱
1.1.1.1 伺服器的ip位址
/setup 伺服器上的位置
sudo yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel curl-devel perl-extutils-cbuilder perl-extutils- makemaker
cd setup1.編譯tar-zxvf git-2.8.0.tar.gz
make prefix=/usr/local/git all2.安裝
make prefix=/usr/local/git install3.配置環境變數
vim /etc/profile在檔案最後按i插入
export path=$path:/usr/local/git/bin按esc後輸入:wq 儲存退出
4.使環境變數生效:
source /etc/profile5.測試git是否安裝完成
git --version6.出現下面文字就算成功
git version 2.8.0
1.配置git連線github
git config --global user.name 「aaa」aaa是github使用者名稱
git config --global user.email 「[email protected]」[email protected]是github的郵箱
2.忽略window和linux換行符的差異
git config --global core.autocrlf false3.避免中文亂碼
git config --global core.quotepath off4.對gui的配置
git config --global gui.encoding utf-85.配置ssh-key
ssh-keygen -t rsa -c 「[email protected]」一路回車
ssh-add ~/.ssh/id_rsa如果出現:
could not open a connection to your authentication agent.
就執行:
evalssh-agent
然後再執行
ssh-add ~/.ssh/id_rsa出現下述文字就代表成功:
identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)執行
cat ~/.ssh/id_rsa.pub得到ssh秘鑰
複製到github賬戶中
完成~
Centos 下搭建git伺服器
linuxcentos安裝 搭建git伺服器 git遠端倉庫免更新操作 git是一款免費 開源的分布式版本控制系統,用於敏捷高效地處理任何或小或大的專案。git具有 適合分布式開發,強調個體,公共伺服器壓力和資料量都不會太大,速度快 靈活,任意兩個開發者之間可以很容易的解決衝突,離線工作等優點。也是...
centos 下 TFTP伺服器安裝
一 介紹 tftp trivial file transfer protocol,簡單檔案傳輸協議 是乙個基於udp 協議 69埠 實現的用於在客戶機和伺服器之間進行簡單檔案傳輸的協議提供不複雜 開銷不大 不複雜的檔案傳輸服務。tftp 協議專門為小檔案傳輸而設計,只能從伺服器上獲取檔案,或者向伺服...
debian下安裝git伺服器
linux 做為伺服器端系統,windows 作為客戶端系統,分別安裝 git 伺服器端 yum install y git安裝完後,檢視 git 版本 root localhost git version git version 1.7.1 客戶端 安裝完之後,可以使用 git bash 作為命令...