blob: c7b92c86d4f563babd68b2b9da0ba41031ea08e7 [file] [log] [blame]
Vincent Driessen02548fb2010-07-22 16:12:26 +020010.3:
2----
3Release date: **2010/07/22**
4
Vincent Driessen2da88102010-07-22 16:03:22 +02005* New subcommands for `git flow feature`:
6 - **checkout**:
7 For easily checking out features by their short name. Even allows
8 unique prefixes as arguments (see below).
9
10 - **pull**:
11 This subcommand allows you to painlessly work on a feature branch
12 together with another peer. This is especially valuable for doing
13 peer reviews of other people's code. For more detailed info, see the
14 [commit log][1].
15
16* Easier addressing of branch names by using name prefixes.
17 For example, when using:
18
Vincent Driessen02548fb2010-07-22 16:12:26 +020019 git flow feature finish fo
Vincent Driessen2da88102010-07-22 16:03:22 +020020
21 this automatically finishes the feature branch `foobar` if that's the only
22 feature branch name starting with `fo`.
23
24* No force flag anymore for new feature branches
25 `git flow feature start` lost its `-f` (force) flag. You now don't
26 have to be in a clean repo anymore to start a new feature branch. This
27 avoids the manual `git stash`, `git flow feature start`, `git stash
28 pop` cycle.
29
30* You can use `git-flow` in stand-alone repo's now.
31 This means it does not assume you have an `origin` repository.
Vincent Driessen02548fb2010-07-22 16:12:26 +020032 (Thanks [Mark][2].)
Vincent Driessen2da88102010-07-22 16:03:22 +020033
34* No commands fetch from `origin` by default anymore.
35 There were some issues related to disabling this flag on some platforms.
36
37* Init guesses branch names you may want to use for `develop` and `master`.
38
Vincent Driessen02548fb2010-07-22 16:12:26 +020039* Added super-easy installation script. (Thanks [Rick][3].)
Vincent Driessen2da88102010-07-22 16:03:22 +020040
41* Added BSD license.
42
43[1]: http://github.com/nvie/gitflow/commit/f68d405cc3a11e9df3671f567658a6ab6ed8e0a1
Vincent Driessen02548fb2010-07-22 16:12:26 +020044[2]: http://github.com/talios
45[3]: http://github.com/rickosborne
Vincent Driessen2da88102010-07-22 16:03:22 +020046
Vincent Driessen02548fb2010-07-22 16:12:26 +020047
48Older versions
49--------------
50No change history is recorded for pre-0.3 releases.