先注冊GitHub賬號
配置遠(yuǎn)程倉庫
- 第一步:創(chuàng)建SSH Key
打開shell(Windows下打開Git Bash),運行以下命令創(chuàng)建SSH Key
ssh-keygen -t rsa -C "abc123@mail.com"
創(chuàng)建的密鑰路徑:
- 第二步:配置Key
登錄GitHub,點擊頭像打開下位菜單選擇“Settings”,依次選擇"SSH and GPG Keys"頁面擂错,點擊“New SSH Key”填上任意Title,在Key文本框里粘貼id_rsa.pub文件的內(nèi)容
- 第三步:添加遠(yuǎn)程庫
登錄GitHub吹由,然后在右上角找到“Create a new repo”按鈕欢瞪,創(chuàng)建一個新的倉庫:
在Repository name填入gitTest犯犁,點擊“Create repository”按鈕享钞,就成功地創(chuàng)建了一個新的Git倉庫:
- 第四步:推送本地倉庫
git remote add origin git@github.com:<GitHub賬戶名>/<GitHub-repositoryName>.git
# 推送master至遠(yuǎn)程庫
git push -u origin master
在本地作了提交后割岛,可以通過以下命令推送至遠(yuǎn)程庫
git push origin master