blob: 76fad868948d23a4d238d1e46cf057108e52649e [file] [log] [blame]
Vincent Driessenc4b4b3c2011-05-16 10:44:13 +020010.4.2:
2-----
3Release date: **not yet**
4
Vincent Driessen59e6aef2011-05-16 11:04:42 +02005* `git flow feature finish` can now be called without a feature branch
6 name(prefix) argument and will finish the current branch, if on any.
7
Vincent Driessenc4b4b3c2011-05-16 10:44:13 +02008* Various minor bug fixes related to internal argument passing
9
Vincent Driessen2d0cbec2011-02-06 07:52:43 +0100100.4.1:
11-----
Vincent Driessen4b5b9322011-02-14 07:44:18 +010012Release date: **2011/02/04**
Vincent Driessen2d0cbec2011-02-06 07:52:43 +010013
14* New option `-d` added to `git flow init`, to initialize with defaults without
Vincent Driessen4b5b9322011-02-14 07:44:18 +010015 asking for input interactively. Ideal for creating git-flow enabled repos in
16 custom scripts.
Vincent Driessen2d0cbec2011-02-06 07:52:43 +010017
18* The parsing issues related to git-flow feature's flags are now dealt with on
19 all known platforms. (Fixed #54, #62, #86, #97)
20
21* Escape queries for detecting branch/tag names. (Fixed #91)
22
23
Vincent Driessen3d41ea02010-07-22 16:16:17 +0200240.4:
25---
Vincent Driessen1c289cf2010-10-18 21:46:28 +020026Release date: **2010/10/18**
Vincent Driessen3d41ea02010-07-22 16:16:17 +020027
Vincent Driessen1c289cf2010-10-18 21:46:28 +020028* The flag parsing issues of git-flow subcommands are solved for most
29 platforms.
30
31* `git flow {feature,hotfix,release} finish` now takes a `-k` flag, to keep the
32 branch around after finishing.
33
34* `git flow release finish` takes a `-n` flag, to skip tagging.
35
36* For consistency, `git flow {release,hotfix}` now, too, have a `publish` and
37 `track` subcommand, just like `feature`.
38
39* Various minor fixes.
Vincent Driessen3d41ea02010-07-22 16:16:17 +020040
41
Vincent Driessen02548fb2010-07-22 16:12:26 +0200420.3:
43----
44Release date: **2010/07/22**
45
Vincent Driessen2da88102010-07-22 16:03:22 +020046* New subcommands for `git flow feature`:
47 - **checkout**:
48 For easily checking out features by their short name. Even allows
49 unique prefixes as arguments (see below).
50
51 - **pull**:
52 This subcommand allows you to painlessly work on a feature branch
53 together with another peer. This is especially valuable for doing
54 peer reviews of other people's code. For more detailed info, see the
55 [commit log][1].
56
57* Easier addressing of branch names by using name prefixes.
58 For example, when using:
59
Vincent Driessen02548fb2010-07-22 16:12:26 +020060 git flow feature finish fo
Vincent Driessen2da88102010-07-22 16:03:22 +020061
62 this automatically finishes the feature branch `foobar` if that's the only
63 feature branch name starting with `fo`.
64
65* No force flag anymore for new feature branches
66 `git flow feature start` lost its `-f` (force) flag. You now don't
67 have to be in a clean repo anymore to start a new feature branch. This
68 avoids the manual `git stash`, `git flow feature start`, `git stash
69 pop` cycle.
70
71* You can use `git-flow` in stand-alone repo's now.
72 This means it does not assume you have an `origin` repository.
Vincent Driessen02548fb2010-07-22 16:12:26 +020073 (Thanks [Mark][2].)
Vincent Driessen2da88102010-07-22 16:03:22 +020074
75* No commands fetch from `origin` by default anymore.
76 There were some issues related to disabling this flag on some platforms.
77
78* Init guesses branch names you may want to use for `develop` and `master`.
79
Vincent Driessen02548fb2010-07-22 16:12:26 +020080* Added super-easy installation script. (Thanks [Rick][3].)
Vincent Driessen2da88102010-07-22 16:03:22 +020081
82* Added BSD license.
83
84[1]: http://github.com/nvie/gitflow/commit/f68d405cc3a11e9df3671f567658a6ab6ed8e0a1
Vincent Driessen02548fb2010-07-22 16:12:26 +020085[2]: http://github.com/talios
86[3]: http://github.com/rickosborne
Vincent Driessen2da88102010-07-22 16:03:22 +020087
Vincent Driessen02548fb2010-07-22 16:12:26 +020088
89Older versions
90--------------
91No change history is recorded for pre-0.3 releases.