Vincent Driessen | 3d41ea0 | 2010-07-22 16:16:17 +0200 | [diff] [blame] | 1 | 0.4: |
| 2 | --- |
| 3 | Release date: ??? |
| 4 | |
| 5 | (No changes yet.) |
| 6 | |
| 7 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 8 | 0.3: |
| 9 | ---- |
| 10 | Release date: **2010/07/22** |
| 11 | |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 12 | * 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 Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 26 | git flow feature finish fo |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 27 | |
| 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 Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 39 | (Thanks [Mark][2].) |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 40 | |
| 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 Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 46 | * Added super-easy installation script. (Thanks [Rick][3].) |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 47 | |
| 48 | * Added BSD license. |
| 49 | |
| 50 | [1]: http://github.com/nvie/gitflow/commit/f68d405cc3a11e9df3671f567658a6ab6ed8e0a1 |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 51 | [2]: http://github.com/talios |
| 52 | [3]: http://github.com/rickosborne |
Vincent Driessen | 2da8810 | 2010-07-22 16:03:22 +0200 | [diff] [blame] | 53 | |
Vincent Driessen | 02548fb | 2010-07-22 16:12:26 +0200 | [diff] [blame] | 54 | |
| 55 | Older versions |
| 56 | -------------- |
| 57 | No change history is recorded for pre-0.3 releases. |