Skip to content

Commit

Permalink
Add a Changelog, for keeping a clean overview of what changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Jul 22, 2010
1 parent de95e00 commit 2da8810
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Changes.mdown
@@ -0,0 +1,42 @@
0.3 (released 2010/07/22):
--------------------------
* New subcommands for `git flow feature`:
- **checkout**:
For easily checking out features by their short name. Even allows
unique prefixes as arguments (see below).

- **pull**:
This subcommand allows you to painlessly work on a feature branch
together with another peer. This is especially valuable for doing
peer reviews of other people's code. For more detailed info, see the
[commit log][1].

* Easier addressing of branch names by using name prefixes.
For example, when using:

git flow feature finish fo

this automatically finishes the feature branch `foobar` if that's the only
feature branch name starting with `fo`.

* No force flag anymore for new feature branches
`git flow feature start` lost its `-f` (force) flag. You now don't
have to be in a clean repo anymore to start a new feature branch. This
avoids the manual `git stash`, `git flow feature start`, `git stash
pop` cycle.

* You can use `git-flow` in stand-alone repo's now.
This means it does not assume you have an `origin` repository.

* No commands fetch from `origin` by default anymore.
There were some issues related to disabling this flag on some platforms.

* Init guesses branch names you may want to use for `develop` and `master`.

* Added super-easy installation script (thanks Rick Osborne)

* Added BSD license.

[1]: http://github.com/nvie/gitflow/commit/f68d405cc3a11e9df3671f567658a6ab6ed8e0a1

(No change history recorded for pre-0.3 releases.)

0 comments on commit 2da8810

Please sign in to comment.