1. ddd9dfe Tidy up a bit. by Vincent Driessen · 15 years ago
  2. 8fee0c2 Added -k option to keep (feature|hotfix|relase) branch when calling 'finish'. by Guillaume-Jean Herbiet · 15 years ago
  3. cf3da5a Fixed incorrect color flag by Adam Gibbins · 15 years ago
  4. 871f5ed Bugfix to avoid errors due to Git subcommands returning ANSI color output. by Vincent Driessen · 15 years ago
  5. cb654b1 Fix whitespace issues. by Vincent Driessen · 15 years ago
  6. 8a86c48 Finishing features now only update / and / if they exists, this allows you to work on a unpushed repo, or a git svn repo by Mark Derricutt · 15 years ago
  7. f68d405 Added new experimental `feature pull` subcommand. by Vincent Driessen · 15 years ago
  8. ddb350b Change the URL of the original blog post. by Vincent Driessen · 15 years ago
  9. 2b829ce Forgot to update usage text. by Vincent Driessen · 15 years ago
  10. 4132de9 Allow new feature branches in dirty working trees. by Vincent Driessen · 15 years ago
  11. e761e35 Force deletion of the feature branch after finish. by Vincent Driessen · 15 years ago
  12. 4de01f2 Adding an extra line to the output for extra spacing. by Randy Merrill · 15 years ago
  13. b681b45 Adding extra instructions when running the list option without any corresponding branches found. by Randy Merrill · 15 years ago
  14. a2baef9 Added alias 'co' for new 'checkout' subcommand. by Vincent Driessen · 15 years ago
  15. d43ab84 Added 'feature checkout' subcommand. by Vincent Driessen · 15 years ago
  16. c118a85 Fix: unnecessary requirement of origin when creating a new feature branch. by Vincent Driessen · 15 years ago
  17. d72acba Added inline license terms to all source files. by Vincent Driessen · 15 years ago
  18. 192ff52 Correct advisory message. Wording was reversed. by gmallard · 15 years ago
  19. a2e4116 Document all available flags in all of the subcommand synopsis texts. by Vincent Driessen · 15 years ago
  20. 05e6586 Removed the --squash option until it's fully implemented. by Vincent Driessen · 15 years ago
  21. 7832d6e Better naming of common functions categorizing them into common, by Vincent Driessen · 15 years ago
  22. c1598bf Added function gitflow_require_initialized(), to assert that the gitflow by Vincent Driessen · 15 years ago
  23. cf6e92a Changed GIT_DIR variable into DOT_GIT_DIR, since Git uses it and chokes if by Vincent Driessen · 15 years ago
  24. d72e4ac Rewrite the way git-flow initialized its variables in git-flow and assumed by Vincent Driessen · 15 years ago
  25. 21c7aa9 Don't store remote and local branch names in shell variables, but query by Vincent Driessen · 15 years ago
  26. f46e290 Replaced all 'typeset' and 'typeset -i' calls by 'local', as adviced on: by Vincent Driessen · 15 years ago
  27. a4dd223 Quote all variables in function/program arguments. by Vincent Driessen · 15 years ago
  28. c5fcc01 Do not quote variable assignments. by Vincent Driessen · 15 years ago
  29. ca73caf Replaced all old-style flag variables by shFlags-style flag variables. by Vincent Driessen · 15 years ago
  30. d099126 Tidying up: by Vincent Driessen · 15 years ago
  31. 27592dd Tidy up: by Vincent Driessen · 15 years ago
  32. 5474e46 If feature diff is called without arguments, compare the changes made in by Vincent Driessen · 15 years ago
  33. 010252a Added an optional <base> argument to all start subactions. by Vincent Driessen · 15 years ago
  34. 3c337fb Added -v (--verbose) flags to list subaction of all subcommands. by Vincent Driessen · 15 years ago
  35. 5455a6f Allow creation of feature branches even for dirty working trees (using flag -f, --force). by Vincent Driessen · 15 years ago
  36. 4417492 Fix: Of course, in sh, true=0 and false=1. In order to never mess this up by Vincent Driessen · 15 years ago
  37. eec73c6 Only push to the origin repo if we wanted to fetch, too. by Vincent Driessen · 15 years ago
  38. 95bf82c Add support for the -r (--rebase) option, before doing the actual merge. by Vincent Driessen · 15 years ago
  39. 9cf5673 Fix: do integer comparison, not string comparison. wc returns stuff like ' 13', which is perfectly equal to 13. by Vincent Driessen · 15 years ago
  40. c62633f Added initial implementation of the rebase [-i] subcommand. by Vincent Driessen · 15 years ago
  41. 11b1f41 Allow for optional <name> argument in feature diffs. (No name uses the "current" feature branch.) by Vincent Driessen · 15 years ago
  42. b03cf96 Update options for feature's subcommands in usage. by Vincent Driessen · 15 years ago
  43. 1156092 Fix: bug that caused BRANCH variable not to be set correctly. by Vincent Driessen · 15 years ago
  44. aa6d016 Implement showing the currently checked out feature branch in feature list by Vincent Driessen · 15 years ago
  45. 1adbc3e Dynamically calculate maximal column width used in verbose feature list output. by Vincent Driessen · 15 years ago
  46. f2536f4 Add initial implementation of the --verbose flag algorithm. by Vincent Driessen · 15 years ago
  47. 1b81923 Use shFlags to parse flags given to main and subcommands. by Vincent Driessen · 15 years ago
  48. 1ee37e7 Fix one old occurence of gitflow_check_ -> gitflow_require_ by Vincent Driessen · 15 years ago
  49. ea60895 Document which subcommands may use the prefix. by Vincent Driessen · 15 years ago
  50. 8392ed3 Doesn't make sense to allow prefix names for commands that require $BRANCH to be absent. by Vincent Driessen · 15 years ago
  51. 22ef21a Further divide the parse_args function up, to support automatic prefix expansion for all subcommands, except for 'feature start' by Vincent Driessen · 15 years ago
  52. 2e1856b Implement the basic logic to resolve name prefixes passed to 'flow feature' into their full feature branch names, if unambiguous. by Vincent Driessen · 15 years ago
  53. f6f152f Support scenarios where the user might have cancelled a merge in the middle of a merge conflict. by Vincent Driessen · 15 years ago
  54. 49c7d02 Initial implementation of merge conflict resolution support. by Vincent Driessen · 15 years ago
  55. 2acfffd Make the 'to fetch or not to fetch' flag explicit in the other commands, too. by Vincent Driessen · 15 years ago
  56. e034e4a Only have network connectivity when explicitly asked for feature branches. This action is so common that it should be quick (very git-ish). by Vincent Driessen · 15 years ago
  57. 4838644 Replace gitflow_check_ prefixes by gitflow_require_ prefixes, for consistency. by Vincent Driessen · 15 years ago
  58. 278884b Fix 'feature diff' by Vincent Driessen · 15 years ago
  59. 46e9c86 Merge branch 'feature/subcmd-structure' into develop by Vincent Driessen · 15 years ago
  60. b866b01 Give all subcommands an optional setup() function that will be called by git-flow in order to let the subcommand initialize its environment. by Vincent Driessen · 15 years ago
  61. 49dd62b refactor git config calls to global variables by Benedikt Böhm · 15 years ago
  62. 170dc74 Refactored the feature, release and support subcommands, too. by Vincent Driessen · 15 years ago
  63. 186d2b5 Refactored the subcommand invocation logic to form a more hierarchical structure and a cleaner design. by Vincent Driessen · 15 years ago
  64. c51aedf No feature branches is perfectly OK, so exit clean with code 0. by Vincent Driessen · 15 years ago
  65. bd4f095 Added cmd_list and cmd_diff to git-flow-feature. by Vincent Driessen · 15 years ago
  66. 6c2d30b Structurally replace gitflow by git-flow, as a true git extension. by Vincent Driessen · 15 years ago
  67. 4d22227 make git fetch silent by Benedikt Böhm · 15 years ago
  68. 83d4361 fix modes by Benedikt Böhm · 15 years ago
  69. 96f44c0 make branch prefixes configurable by Benedikt Böhm · 15 years ago
  70. 350e715 make origin configurable by Benedikt Böhm · 15 years ago
  71. 4a864fb make master and develop branch names configurable by Benedikt Böhm · 15 years ago
  72. 00ccea6 refactor the whole thing by Benedikt Böhm · 15 years ago