Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 692 Bytes

File metadata and controls

30 lines (19 loc) · 692 Bytes

git-flow 是一个 git 扩展集,按 Vincent Driessen 的分支模型提供高层次的库操作。查看详情

安装

# Linux
apt-get install git-flow

# macOS
brew install git-flow-avh

# windows
wget -q -O - --no-check-certificate https://raw.github.com/petervanderdoes/gitflow-avh/develop/contrib/gitflow-installer.sh install stable | bash

使用

# 初始化工作流仓库
git flow init -d

# newBranch 为新建的功能分支
git flow feature start newBranch 

git-flow