github 上傳與刪除專案

2022-08-22 12:30:18 字數 550 閱讀 6194

在github上建立好倉庫後,在本地建立乙個倉庫 

git config --global user.name '

you name

'git config --global user.email '

you email

'

1.生成金鑰

ssh-keygen -t rsa -c "your name"  #引號裡輸入你的使用者名稱

2.檢視金鑰,使用 cat ,複製金鑰

3.在github上新增金鑰

點選使用者頭像   --setting   -- ssh and gpg keys

git init

把專案移動本地倉庫

git add .

git commit -m '提交'

git remote add origin

git push

git rm -r --cached 《檔案》git commit -m '刪除

'git push

github上傳專案

echo office automation script readme.md git init 在專案根目錄執行init git add readme.md git commit m first commit git remote add origin git push u origin mast...

GitHub 上傳專案

相關操作指令 1 在github先新建專案acc,然後把路徑名複製起來,路徑名 project 2 在想要上傳的資料夾下右擊 得先安裝上git 選中git bash here 3 git clone project 4 cd acc 5 git add 把需要傳上去的檔案放在acc資料夾下 6 gi...

github上傳專案

預設你下了 git 的 在 github 新建倉庫的時候不要選擇 add a readme file 如果選了,一路預設下去,分支名叫 main 這.不選這個 add a readme file,然後預設下去 進入到自己的專案資料夾下,右鍵空白處開啟 git bash,然後按這個教程來就行了 git...