在CentOS中安裝和配置Git版本控制系統,可以按照以下步驟進行操作:
sudo yum install git
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
ssh-keygen -t rsa -b 4096 -C "youremail@example.com"
按照提示一直按Enter鍵,直到生成SSH密鑰成功為止。
將SSH密鑰添加到你的Git賬號中: 將~/.ssh/id_rsa.pub中的內容復制到你的Git賬號的SSH密鑰設置中。
驗證SSH密鑰是否添加成功:
ssh -T git@github.com
如果成功會顯示類似以下信息:
Hi username! You've successfully authenticated, but GitHub does not provide shell access.
至此,在CentOS中安裝和配置Git版本控制系統就完成了。現在你可以使用Git來管理你的項目代碼了。