Ubuntu鏈結遠端github

2021-09-26 16:07:21 字數 1906 閱讀 9498

一、ubuntu安裝git軟體

1、安裝git和ssh

wangpeng@ubuntu:~$ sudo apt install git

wangpeng@ubuntu:~$ sudo apt install ssh

2、配置git使用者資訊

wangpeng@ubuntu:~$ git config --global user.name "wangpengtai"

wangpeng@ubuntu:~$ git config --global user.email "[email protected]"

注意:

wangpeng@ubuntu:~/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 'wangpeng@ubuntu.(none)')

不配置這會提示的!告訴你使用方法。

二、ubunu本地建立ssh金鑰

wangpeng@ubuntu:~$ ls -al
檢視下有沒有.ss**件,ubuntu新系統不帶ssh,所以沒有,手動建立乙個或者ssh連線一台伺服器,建立一下鏈結就行了。

wangpeng@ubuntu:~$ ssh-keygen -t rsa -c "[email protected]"
一直回車下去,在.ss**件夾中找到id_rsa.pub,將其內容拷貝下來。

三、github上新增ssh key金鑰

四、將github上的庫轉殖到本地

倉庫可以新建乙個,現在有現成的不弄了。

wangpeng@ubuntu:~$ git clone  [email protected]:wangpengtai/devops.git
首次建立連線需要確認來自github連線的資訊。

2、本地**推送到github

Ubuntu鏈結遠端github

一 ubuntu安裝git軟體 1 安裝git和ssh 12 wangpeng ubuntu sudoaptinstallgit wangpeng ubuntu sudoaptinstallssh 2 配置git使用者資訊 12 wangpeng ubuntu git config global u...

ubuntu下開啟mysql遠端鏈結

第一步 vim etc mysql my.cnf找到bind address 127.0.0.1 注釋掉這行,或者改為 bind address 0.0.0.0 允許任意ip訪問 或者自己指定乙個ip位址。重啟 mysql sudo etc init.d mysql restart 第二步 授權使用...

ubuntu下把工程檔案上傳到github的步驟

ubuntu 下github使用步驟 github是乙個基於git的 託管平台,付費使用者可以建私人倉庫,我們一般的免費使用者只能使用公共倉庫,也就是 要公開。以下就是使用步驟 1 註冊github賬戶以及建立倉庫 repository 2 git工具安裝及如何配置git github終端有很多種,...