Git Command Quick Reference is available directly in your browser, with no data uploaded.
Git Flow 是一種適合釋出型專案的分支模型,包含 5 種分支:master、develop、feature、release、hotfix。
git flow initgit flow feature start my-featuregit flow feature finish my-featuregit flow release start 1.0.0git flow release finish 1.0.0git flow hotfix start hotfix-1.0.1GitHub Flow 是更簡潔的工作流,適合持續部署的專案。只有 master 和 feature 分支。
git checkout -b feature/my-featuregit add . && git commit -m "feat: 添加新功能"git push -u origin feature/my-featuregit branch -d feature/my-featureGit 命令速查。專為開發者打造的線上工具,純前端執行,程式碼不離開瀏覽器。