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