生成 SSH 公鑰
默認(rèn)情況下脊髓,用戶的 SSH 密鑰存儲(chǔ)在其 ~/.ssh 目錄下。 進(jìn)入該目錄并列出其中內(nèi)容科贬,你便可以快速確認(rèn)自己是否已擁有密鑰:
% cd ~/.ssh
% ls
id_rsa id_rsa.pub known_hosts
我們需要尋找一對(duì)以 id_dsa 或 id_rsa 命名的文件胧卤,其中一個(gè)帶有 .pub 擴(kuò)展名羔飞。 .pub 文件是你的公鑰,另一個(gè)則是與之對(duì)應(yīng)的私鑰挎袜。
如果找不到這樣的文件(或者根本沒有 .ssh 目錄)顽聂,你可以通過(guò)運(yùn)行 ssh-keygen 程序來(lái)創(chuàng)建它們。 在 Linux/macOS 系統(tǒng)中盯仪,ssh-keygen 隨 SSH 軟件包提供紊搪;在 Windows 上,該程序包含于 MSysGit 軟件包中全景。
ssh-keygen -o后三次回車
$ ssh-keygen -o
Generating public/private rsa key pair.
Enter file in which to save the key (/home/schacon/.ssh/id_rsa):
Created directory '/home/schacon/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/schacon/.ssh/id_rsa.
Your public key has been saved in /home/schacon/.ssh/id_rsa.pub.
The key fingerprint is:
d0:82:24:8e:d7:f1:bb:9b:33:53:96:93:49:da:9b:e3 schacon@mylaptop.local
查看公鑰
$ cat ~/.ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU
GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3
Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA
t3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/En
mZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbx
NrRFi9wrf+M7Q== schacon@mylaptop.local
小結(jié):
ssh-keygen -o 三次回車
生成SSH密鑰對(duì)
cat ~/.ssh/id_rsa.pub
查看ssh公鑰
參考:https://git-scm.com/book/zh/v2/服務(wù)器上的-Git-生成-SSH-公鑰
將項(xiàng)目上傳到遠(yuǎn)程倉(cāng)庫(kù)步驟
- cd到項(xiàng)目目錄下
-
git init
創(chuàng)建git倉(cāng)庫(kù) -
git add .
將項(xiàng)目的所有文件添加到倉(cāng)庫(kù)中 -
git commit -m "初始化項(xiàng)目"
將add的文件提交到本地倉(cāng)庫(kù) -
git status
查看git狀態(tài) -
git remote add origin http:***耀石。
將本地的倉(cāng)庫(kù)關(guān)聯(lián)到遠(yuǎn)程地址上 -
git checkout -b origin/develop
創(chuàng)建origin/develop分支 -
git branch
查看遠(yuǎn)程分支 -
git push -u origin origin/develop
將本地倉(cāng)庫(kù)推送到遠(yuǎn)程分支上
git上傳忽略文件
- cd到項(xiàng)目目錄下
-
touch .gitignore
生成“.gitignore”文件
在”.gitignore” 文件里輸入你要忽略的文件夾及其文件就可以了。
node_modules/
dist/
省略規(guī)則
1)/mtk/ 過(guò)濾整個(gè)文件夾
2)*.zip 過(guò)濾所有.zip文件
3)/mtk/do.c 過(guò)濾某個(gè)具體文件
node_modules/ 表示過(guò)濾這個(gè)文件夾
*.zip 過(guò)濾zip后綴文件
demo.html 過(guò)濾該文件
!src/ 不過(guò)濾該文件夾
!*.js 不過(guò)濾java源文件
!index.html 不過(guò)濾該文件