1. 21 Feb, 2010 1 commit
  2. 20 Feb, 2010 14 commits
  3. 19 Feb, 2010 3 commits
  4. 16 Feb, 2010 2 commits
  5. 15 Feb, 2010 3 commits
  6. 09 Feb, 2010 5 commits
  7. 08 Feb, 2010 4 commits
  8. 07 Feb, 2010 1 commit
  9. 06 Feb, 2010 3 commits
    • Vincent Driessen's avatar
      Tidying up: · d099126f
      Vincent Driessen authored
      - Move resolve_name_by_prefix() from git-flow-feature to gitflow-common
      - Rename require_name() to require_name_arg()
      - Refactor expanding of nameprefixes
      d099126f
    • Vincent Driessen's avatar
      886c9e15
    • Vincent Driessen's avatar
      Tidy up: · 27592dd7
      Vincent Driessen authored
      - Lower-cased all local variable names
      - Explicitly typeset all local variable names, to prevent issues with
        setting/overriding variables in the global namespace.
      - Explicitly typed integer types as integer (typeset -i) to enable simpler
        arithmetic calculations on them.
      27592dd7
  10. 05 Feb, 2010 1 commit
  11. 04 Feb, 2010 3 commits
    • Vincent Driessen's avatar
      If feature diff is called without arguments, compare the changes made in · 5474e46a
      Vincent Driessen authored
      this feature branch *including* the changes in the current working tree.
      
      If an explicit feature branch is named (may be a prefix of a branch name),
      the diff shows only changes that are already committed.
      5474e46a
    • Vincent Driessen's avatar
      Added an optional <base> argument to all start subactions. · 010252a8
      Vincent Driessen authored
      The only exception to the rule is git-flow-support, which has an
      explicitly required <base> argument (since we cannot deduce a sane default
      name for base).
      
      Furthermore, these <base> arguments are checked to refer to commits on:
      - develop (for feature, release)
      - master  (for hotfix, support)
      
      Removed any occurrences of optional <base> arguments in finish subactions.
      The finishing target branches are clearly defined by the model. The <base>
      argument will probably confuse users. If they want the power to merge
      those feature branches into *other* branches then develop, for example,
      they can still use the magical power of Git itself for that. Gitflow
      should not provide such support.
      010252a8
    • Vincent Driessen's avatar
      92770244