john
0440a31558
删除无用代码 |
||
---|---|---|
.yarn | ||
public | ||
src | ||
.env.development | ||
.env.production | ||
.gitignore | ||
.yarnrc.yml | ||
README.md | ||
index.html | ||
package.json | ||
tsconfig.json | ||
tsconfig.node.json | ||
vite.config.ts | ||
yarn.lock |
README.md
Git Flow
-
初始化Git Flow git flow init
-
创建一个新功能分支 git flow feature start new-feature
-
完成功能开发 git flow feature finish new-feature
-
创建一个release分支 git flow release start 1.0.0
-
完成release分支 git flow release finish 1.0.0
-
紧急修复 git flow hotfix start hotfix-issue git flow hotfix finish hotfix-issue