Ubuntu連結遠程github
阿新 • • 發佈:2017-09-10
linux ubuntu centos 遠程連接 git
一、Ubuntu安裝git軟件
1、安裝git和ssh
[email protected]:~$ sudo apt install git [email protected]:~$ sudo apt install ssh
2、配置git用戶信息
[email protected]:~$ git config --global user.name "wangpengtai" [email protected]:~$ git config --global user.email "[email protected]"
註意:
[email protected]:~/devops$ git commit -m "add centos6_security.sh" *** Please tell me who you are. Run git config --global user.email "[email protected]" git config --global user.name "Your Name" to set your account‘s default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got ‘[email protected](none)‘)
不配置這會提示的!告訴你使用方法。
二、Ubunu本地創建ssh密鑰
[email protected]:~$ ls -al
查看下有沒有.ssh文件,Ubuntu新系統不帶ssh,所以沒有,手動創建一個或者ssh連接一臺服務器,建立一下連結就行了。
[email protected]:~$ ssh-keygen -t rsa -C "[email protected]"
一直回車下去,在.ssh文件夾中找到id_rsa.pub,將其內容拷貝下來。
三、github上添加ssh key密鑰
四、將github上的庫克隆到本地
1、下載遠程倉庫
倉庫可以新建一個,現在有現成的不弄了。
[email protected]:~$ git clone [email protected]:wangpengtai/devops.git
首次建立連接需要確認來自github連接的信息。
2、本地代碼推送到github
[email protected]:~/devops$ git add centos6_security.sh [email protected]:~/devops$ git commit -m "add centos6_security.sh" [email protected]:~/devops$ git commit -m "add centos6_security.sh" [email protected]:~/devops$ git push origin master
本文出自 “LINUX” 博客,請務必保留此出處http://wangpengtai.blog.51cto.com/3882831/1964031
Ubuntu連結遠程github