有风塘主
发布于 2024-10-26 / 27 阅读
0
0

Git Flow相关

Git Flow相关

拉取代码操作(不用切换分支)

git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks fetch origin develop:develop

hotfix 操作

创建hotfix
git flow hotfix start hotfix#4098 master
结束hotfix
git flow hotfix finish hotfix#4000
feature 操作
git flow feature start feature#3997 develop

更新其他分支的代码

git fetch origin master:master

评论