Github 基本操作命令
1.向 git做自我介紹
git config --global user.name "註冊時的github賬號"
git config --global user.email "github的註冊郵箱"
ssh -key 的配置
安裝好github之後,開啟桌面出現的 軟體Gitbash 進入命令列,ssh -keygen -t rsa -C “註冊時的真實郵箱”
直接回車三次就好,
輸入密碼:就是咱們註冊github的密碼
——新增ssh key到Github上面
首先登陸Github,點選右上角的向下圖示,setting——ssh keys ——add keys
然後在c/user/xxx/.ssh中開啟字尾為rsa.pub的檔案,複製內容
或者輸入cat ~/ssh./id_rsa.pub 也可以得到公鑰 最後貼上到key的輸入框中,對於title 自定義即可
配置賬戶:git config --global.user.name "" git config --global user.email ""
測試ssh key是否配置成功
ssh -T [email protected]
The authenticity of host 'github.com (192.30.252.129)' can't be established.
RSA key fingerprint is 16:27:xx:xx:xx:xx:xx:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes #確認你是否繼續聯絡,輸入yes
Warning: Permanently added 'github.com,192.30.252.129' (RSA) to the list of known hosts.
Enter passphrase for key '/c/Users/xxxx_000/.ssh/id_rsa': #生成ssh kye是密碼為空則無此項,若設定有密碼則有此項且,輸入生成ssh key時設定的密碼即可。
Hi xxx! You've successfully authenticated, but GitHub does not provide shell access. #出現此句話,說明設定成功。
常用命令:
1、建立倉庫(公開)
點選github右上角的+裡面的new repository
在repository name欄中輸入倉庫的名稱
description 欄中可以設定倉庫的說明
piblic(公開)通用 private(非公開)收費
勾選Initialize this repository with a README ,如果想向GitHub新增手中已有的Git倉庫,建議不要勾選
Add.gitignore 下拉框中選擇要使用的框架
Add a license選擇新增許可協議檔案
點選create repository按鈕,完成倉庫的建立
2、克隆之前首先要選擇克隆檔案的位置(cd)
clone倉庫
git clone [email protected] :使用者名稱/倉庫名
3.git status
4.提交
git add 檔名稱.拓展名
git commit -m 後面加備註或者解釋都可也
git log 提交日誌檔案
git push 更新github上面的倉庫
mkdir 建立倉庫
git init 初始化倉庫
git status 檢視倉庫狀態
touch 檔名 建立檔案