当前位置:首页 > 技术工具 > 正文内容

GIT学习笔记

haoliang12个月前 (07-27)技术工具10400

git 基础与版本控制


Git - Book (git-scm.com)

git 协作与工作流

git-flow 练习笔记 | Anran758's blog

使用 git-flow 自动化你的 git 工作流 - 码力全开 - SegmentFault 思否

image.png

git flow 相关的命令操作,实现git flow 工作流的操作

$ git flow init
Initialized empty Git repository in /Users/savokiss/demos/gitflow/.git/
No branches exist yet. Base branches must be created now.
Branch name for production releases: [master]
Branch name for "next release" development: [develop]

How to name your supporting branch prefixes?
Feature branches? [feature/]
Bugfix branches? [bugfix/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? [] v
Hooks and filters directory? [/Users/savokiss/demos/gitflow/.git/hooks]
$ git flow feature start auth    //重要的创建功能的命令
Switched to a new branch 'feature/auth'

Summary of actions:
- A new branch 'feature/auth' was created, based on 'develop'
- You are now on branch 'feature/auth'

Now, start committing on your feature. When done, use:

     git flow feature finish auth



sourcetree :使用GUI界面初始化git flow 并进行git工作流的操作

image.png

扫描二维码推送至手机访问。

版权声明:本文由象意工作室发布,如需转载请注明出处。

本文链接:http://www.xiangyistudio.com/?id=8

标签: 计算机git
分享给朋友:
返回列表

上一篇:技术工具 List

没有最新的文章了...

“GIT学习笔记” 的相关文章

技术工具 List

本文主要是作为笔记记录使用的相关技术工具的list,其内容分别包含实体工具,软件工具,硬件工具,思维工具等不同的工具技术...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。