github上傳專案

2021-10-25 05:23:20 字數 572 閱讀 2311

( 預設你下了 git 的 )

在 github 新建倉庫的時候不要選擇

add a readme file

【如果選了,一路預設下去,分支名叫 main ... 這...】

不選這個 add a readme file,然後預設下去

進入到自己的專案資料夾下,

右鍵空白處開啟 git bash,

然後按這個教程來就行了

git init

git add .

git commit -m "備註"

git remote add origin 倉庫位址

git push -u origin master

要刪除某個檔案:

git pull origin master

git rm -r --cached readme.txt

git commit -m '刪除了readme.txt' 

git push -u origin master

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的安裝就不說了。第一步 我們需要先建立乙個本地的版本庫 其實也就是乙個資料夾 你可以直接右擊新建資料夾,也可以右擊開啟git bash命令列視窗通過命令來建立。現在我通過命令列在桌面新建乙個test資料夾 你也可以在其他任何地方建立這個資料夾 並且進入這個資料夾 第二步 通過命令git ini...