(一)master本地改變導致git pull 不能直接進行
不需要儲存
既然不想保留本地的修改,那好辦。直接將本地的狀態恢復到上乙個commit id 。然後用遠端的**直接覆蓋本地就好了
git reset --hard
git pull origin master
(二)刪除branch
error: cannot delete branch 『***』 checked out at 『***x』
刪除分支時,當前分支不能停留在要刪除的分支上,要切換到其他任意分支,再去刪除目標分支
git branch
git checkout deletebranchname
git branch -d deletebranchname
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...