Linux-git安裝

山丘i發表於2018-08-09

基本操作

  1. 安裝yum install git
  2. 生成SSH KEY :先cd ~/.ssh,在這個目錄下輸入ssh-keygen,一直回車就可以了,這個時候就會出現id_rsd.pub公鑰和id_rsa私鑰,然後cat id_rsa.pub,把這個公鑰複製到對應的碼雲平臺或者是github上,配置SSH Key
  3. 基本命令
git config git init
git clone git remote
git fetch git commit
git rebase git push
  1. 此時就可以通過git clone github上對應ssh連線,把程式碼克隆到本地了

學習網址http://www.runoob.com/git/git-tutorial.html

命令自動補全

  1. 下載原始碼 使用下載原始碼中的 git-completion.bash 自動補全命令的檔案 git clone git@github.com:git/git.git ,前提是你在github上配置了公鑰
  2. 複製git-completion.bash 檔案cp contrib/completion/git-completion.bash /etc/bash_completion.d/
  3. 載入bash指令碼source /etc/bash_completion.d/git-completion.bash
  4. 自動載入指令碼,編輯vim ~/.bash_profile,新增下面的就可以了
# Git bash autoload
if [ -f /etc/bash_completion.d/git-completion.bash ]; then
source /etc/bash_completion.d/git-completion.bash
fi

相關文章