看一看教學再自己操作一遍
https://enginebai.medium.com/git-flow-60b9466e9942
https://gitbook.tw/chapters/gitflow/why-need-git-flow
https://awdr74100.github.io/2020-05-07-git-fork-pullrequest/
最後附上一個我練習的GitHub
以及小筆記
初始化:git init
單一檔案加入索引:git add <檔案名稱>
所有檔案加入索引:git add .
提交版本:git commit -m "填寫版本資訊"
觀看當前狀態:git status
瀏覽歷史紀錄:git log
git remote github網址
git push -u origin master
更新本地倉庫至最新狀態:git pull origin main
查看分支:git branch
選擇分支:git checkout <分支名>
合併分支:先checkout <目標分支>,再merge <源分支>
手動移除並提交已追蹤的檔案:git rm --cached <檔案名>
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.st status
git config --global alias.ci commit