Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
c81e7a2d
Commit
c81e7a2d
authored
Jan 28, 2010
by
Vincent Driessen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the README to reflect the new subcommand structure.
parent
3625f395
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
34 deletions
+22
-34
README.mdown
README.mdown
+22
-34
No files found.
README.mdown
View file @
c81e7a2d
...
@@ -5,17 +5,9 @@ for Vincent Driessen's [branching model](http://nvie.com/archives/323 "original
...
@@ -5,17 +5,9 @@ for Vincent Driessen's [branching model](http://nvie.com/archives/323 "original
blog post").
blog post").
Release 0.1
> **IMPORTANT NOTE:**
-----------
> In release 0.2, the order of the arguments has changed to provide a logical
A quick release of version 0.1 has arrived. The main scripts are functional and
> subcommand hierarchy.
should be usable under "normal" use.
There have barely been any real-world tests, but I encourage you to start using
it actively. [Feedback](http://github.com/nvie/gitflow/issues) is also very
welcome. See the "Please help out" section below, also.
**Make sure to validate the modifications to your repo after running any of the
`git-flow` commands, before pushing them permanently.**
Installing git-flow
Installing git-flow
...
@@ -60,35 +52,31 @@ Example uses:
...
@@ -60,35 +52,31 @@ Example uses:
git flow init
git flow init
* To start a new feature branch, use:
* List all feature branches:
git flow start feature <name> [<base>]
git flow start feature foo-support
`base` is `develop` by default.
* To finish this feature and have it merged into `develop`, use:
git flow feature
git flow finish feature <name>
* To list/start/finish feature branches, use:
git flow finish feature foo-support
* To start a new release branch for 2.0, based on the 1.1 production release, use:
git flow feature
git flow feature start <name> [<base>]
git flow feature finish <name>
git flow start release <release>
(`base` is `develop` by default)
git flow start release 2.0
* To
finish the release branch (i.e. to make an actual production release)
, use:
* To
list/start/finish release branches
, use:
git flow finish release <release>
git flow release
git flow finish release 2.0
git flow release start <release>
git flow release finish <release>
* To
start a new hotfix branch for 2.1, based on the 2.0 production release
, use:
* To
list/start/finish hotfix branches
, use:
git flow
start hotfix
<release> [<base-release>]
git flow
hotfix start
<release> [<base-release>]
git flow
start hotfix 2.1 2.0
git flow
hotfix finish <release>
* To
finish the hotfix branch
, use:
* To
list/start support branches
, use:
git flow
finish hotfix <release>
git flow
support
git flow
finish hotfix 2.1
git flow
support start <release> [<base-release>]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment