git 版本管理
每位程式設計師都該會的版本管理架構
Repository
Github
使用 Git 大致上的工作流程

連接專題到Github
Merge
Branches
Last updated
每位程式設計師都該會的版本管理架構

Last updated
git initgit add [files]
# add all files in the project
git add *git commit -m "commit message"git remote add origin [github repository link]git branch -M maingit push origingit clone [github repository link]git pullgit statusgit checkout -b [branch name]git checkout [branch name]git merge [destination branch] [source branch]