github 建立倉庫並上傳本地倉庫

2021-08-15 04:06:41 字數 594 閱讀 5549

本地執行

ssh-keygen -t rsa
獲取rsa.pub 公鑰,新增到git伺服器才可上傳和提交檔案

git clone
當前目錄開啟命令列執行

#.gitignore 新增忽略檔案

git rm -r --cached .

git add .

#解決git上傳慢的問題,刪除http上傳方式使用ssh上傳方式

git remote rm origin

git remote add origin [email protected]:liutos/foobar.git

github新建倉庫上傳本地專案

官網註冊賬號 建立倉庫 設定倉庫名,描述 型別 在專案資料夾中右鍵,選 git bash here 執行命令 提交成功,這樣在github上就能看到你自己提交的專案了 新增專案成員 生成公鑰 可以一直預設選項 設定公鑰路徑 c users administrator ssh id rsa 預設 密碼...

Linux 本地建立倉庫上傳到GitHub

方式1 通過ssh 方式2 通過https step1.安裝 git pip install git step2.進入工程專案路徑下 假如工程目錄名為 test name,路徑下為你的 則 cd test name step3.初始化本地倉庫 git init step4.新增資源 git add ...

GitHub建立倉庫

0.本地安裝git 直接跳到第三步,使用下面命令更加方便 ssh keygen t rsa c 478377515 qq.com enter cd ls al cd ssh cat id rsa.pub 開啟id rsa.pub中檔案之後,複製 之後進行第四步操作 驗證 ssh t git gith...