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 命令速查。专为开发者打造的在线工具,纯前端运行,代码不离开浏览器。