The Github Flow

推荐 

https://zhuanlan.zhihu.com/p/39148914

https://github.com/rozbo/blog/issues/6

GUI就不推荐了。

what each symbol means?

git flow,终于繁琐的命令无法成为git学习的挡路石

    • 初始化: git flow init
    • 开始新Feature: git flow feature start MYFEATURE
    • Publish一个Feature(也就是push到远程): git flow feature publish MYFEATURE
    • 获取Publish的Feature: git flow feature pull origin MYFEATURE
    • 完成一个Feature: git flow feature finish MYFEATURE
    • 开始一个Release: git flow release start RELEASE [BASE]
    • Publish一个Release: git flow release publish RELEASE
    • 发布Release: git flow release finish RELEASE
      别忘了git push --tags
    • 开始一个Hotfix: git flow hotfix start VERSION [BASENAME]
    • 发布一个Hotfix git flow hotfix finish VERSION

每天看英文,今日看的git相关,稍微整理一下。https://www.youtube.com/watch?v=juLIxo42A_s&t=1280s

猜你喜欢

转载自www.cnblogs.com/CherryTab/p/12219461.html