1.git 安裝
sudo apt-get install git
2.配置本機git的兩個重要資訊,user.name和user.email
git config --global user.name "your name"
git config --global user.email "[email protected]"
然後我們可通過命令 git config --list,檢視是否設定成功
3. 檢視home目錄下是否有.ssh目錄或者home目錄下的ubuntu目錄下是否有 .ssh目錄,如果沒有的話需要下面命令來生成git的ssh key
ssh-keygen -t rsa -c "[email protected]"
然後一直回車就可以了
4.在github上面要新增 .ssh的公鑰
cd /home/ubuntu/.ssh //如果沒有找到.ssh 可以嘗試在 /root/.ssh/下面找到 id_rsa.pub
cat id_rsa.pub
然後將這個檔案中的內容新增到github上的新增公鑰的地方即可
git更新版本
執行下面命令即可更新git
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
Git安裝配置
在使用git前我們需要先安裝 git。git 目前支援 linux unix solaris mac和 windows 平台上執行。git 的工作需要呼叫 curl,zlib,openssl,expat,libiconv 等庫的 所以需要先安裝這些依賴工具。在有 yum 的系統上 比如 fedora...
安裝配置git
安裝git和openssh。在當前使用者下執行如下命令安裝git和openssh sudo apt get install git core openssh server openssh client git core是git版本控制核心軟體 安裝openssh server和openssh cli...
Git 安裝配置
git目前支援linux unix solaris mac和windows平台上執行。linux平台上安裝 git的工作需要呼叫curl zlib openssl expat libiconv等庫的 所以需要先安裝這些依賴工具。在有yum的系統上或者apt get的系統上,可以用下面的命令安裝 de...