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 命令速查。專為開發者打造的在線工具,純前端運行,代碼不離開瀏覽器。