1. d72acba Added inline license terms to all source files. by Vincent Driessen · 15 years ago
  2. 72c4f94 Whitespace issue. by Vincent Driessen · 15 years ago
  3. 2e1579f Added AUTHORS file. by Vincent Driessen · 15 years ago
  4. 5d1dbe7 Added (BSD) licensing terms to the project. by Vincent Driessen · 15 years ago
  5. 192ff52 Correct advisory message. Wording was reversed. by gmallard · 15 years ago
  6. b5500d4 Removed left-behind helper functions in git-flow. by Vincent Driessen · 15 years ago
  7. 3176f74 Explicitly avoid setting up tracking between develop and master. by Vincent Driessen · 15 years ago
  8. f6228ed Replace \c-terminated echo calls by more portable printf calls. by Vincent Driessen · 15 years ago
  9. b1033aa gitflow-init honors global gitflow configuration that may exist before a by Vincent Driessen · 15 years ago
  10. 477a88d Merge branch 'hotfix/0.2.1' into develop by Vincent Driessen · 15 years ago
  11. e0b54c0 Strip the GIT_EXEC_PATH Makefile parameter. Replaced it by the more Unixy by Vincent Driessen · 15 years ago
  12. 133c43c Bump the version number to 0.2.1 by Vincent Driessen · 15 years ago
  13. b554186 Merge branch 'release/0.2' into develop by Vincent Driessen · 15 years ago 0.2
  14. 097459c Merge branch 'release/0.2' by Vincent Driessen · 15 years ago
  15. 4fc0bc1 Use a more friendly URL for the original blog post URL. by Vincent Driessen · 15 years ago
  16. 0465a6d Bumped version number to 0.2 by Vincent Driessen · 15 years ago
  17. a2e4116 Document all available flags in all of the subcommand synopsis texts. by Vincent Driessen · 15 years ago
  18. c49c793 Dotted i's and crossed t's in the README file, for release. by Vincent Driessen · 15 years ago
  19. 05e6586 Removed the --squash option until it's fully implemented. by Vincent Driessen · 15 years ago
  20. e0d8af3 Fix: endswith() implementation actually was a startswith() implementation. by Vincent Driessen · 15 years ago
  21. f9ebb07 Added 'git flow init' to the README file. by Vincent Driessen · 15 years ago
  22. f10a48b Merge branch 'feature/fix-gitflow-function-prefixes' into develop by Vincent Driessen · 15 years ago
  23. 6ee6223 Fix: bug introduced in b25ab83334c14452081af61ca9162d01db40b1e9 by Vincent Driessen · 15 years ago
  24. 55c1553 Reorder functions: Super-common functions go first, then all git-specific by Vincent Driessen · 15 years ago
  25. 7832d6e Better naming of common functions categorizing them into common, by Vincent Driessen · 15 years ago
  26. 677334c Fix: put auto-detected Makefile path into a variable, but keep by Vincent Driessen · 15 years ago
  27. 6d74722 Merge branch 'feature/init-errors' into develop by Vincent Driessen · 15 years ago
  28. ef43cbd Check whether this is a freshly git init'ed repo that's still HEADless. In by Vincent Driessen · 15 years ago
  29. c1598bf Added function gitflow_require_initialized(), to assert that the gitflow by Vincent Driessen · 15 years ago
  30. 1d8bb0d Add function gitflow_has_prefixes_configured(), to check whether a repo is by Vincent Driessen · 15 years ago
  31. 9ddb1dc Allow for setting back a prefix to '' (empty string) by entering '-' by Vincent Driessen · 15 years ago
  32. f476d26 While we're user input in git flow init, ask the user for all prefix by Vincent Driessen · 15 years ago
  33. 3227d80 Only switch to develop branch if it's newly created. by Vincent Driessen · 15 years ago
  34. 131c298 Provided a better way of checking whether master/develop branches need by Vincent Driessen · 15 years ago
  35. b25ab83 Added tests for asserting correctly configured git-flow environment/branches. by Vincent Driessen · 15 years ago
  36. 4e11dd6 Changed implementation of gitflow_all_branches() subtly, since "git branch by Vincent Driessen · 15 years ago
  37. cf6e92a Changed GIT_DIR variable into DOT_GIT_DIR, since Git uses it and chokes if by Vincent Driessen · 15 years ago
  38. 6188206 Always set the gitflow.branch.master and gitflow.branch.develop properties. by Vincent Driessen · 15 years ago
  39. 0161de5 Added implementation of git-flow-init that asks the user interactively what by Vincent Driessen · 15 years ago
  40. 49094bd Change implementation of gitflow_all_branches() to get its result directly from by Vincent Driessen · 15 years ago
  41. d72e4ac Rewrite the way git-flow initialized its variables in git-flow and assumed by Vincent Driessen · 15 years ago
  42. 21c7aa9 Don't store remote and local branch names in shell variables, but query by Vincent Driessen · 15 years ago
  43. b3e89fe Merge branch 'zerotao-patch' into develop by Vincent Driessen · 15 years ago
  44. ddba2df Fix spacing issues. by Vincent Driessen · 15 years ago
  45. 6809f0e Added push option (-p) to hotfix and release by Jason L. Shiffer · 15 years ago
  46. d44eaf9 Merge branch 'feature/compliance' into develop by Vincent Driessen · 15 years ago
  47. 6d64d2c Add check to disallow creation of a new release/hotfix branch when there by Vincent Driessen · 15 years ago
  48. 283b0f7 Fixed a problem with redirection of stdout/stderr. The specifier '2>&1' by Vincent Driessen · 15 years ago
  49. f46e290 Replaced all 'typeset' and 'typeset -i' calls by 'local', as adviced on: by Vincent Driessen · 15 years ago
  50. 13c9482 Added instructions to first fetch submodules before installing. by Vincent Driessen · 15 years ago
  51. 99c8052 Merge branch 'feature/quote-all-var-params' into develop by Vincent Driessen · 15 years ago
  52. b673c44 Better (less complex) way of counting the branch name length. by Vincent Driessen · 15 years ago
  53. 6884523 Use space (' ') instead of '?' as a pattern terminator. by Vincent Driessen · 15 years ago
  54. a4dd223 Quote all variables in function/program arguments. by Vincent Driessen · 15 years ago
  55. c5fcc01 Do not quote variable assignments. by Vincent Driessen · 15 years ago
  56. fafa2b2 Merge branch 'feature/annotated-signed-tags' into develop by Vincent Driessen · 15 years ago
  57. d29e315 Annotated the code with some TODO-notes. by Vincent Driessen · 15 years ago
  58. 5fa4758 Made the finishing of release/hotfix branches fail-safe. When a by Vincent Driessen · 15 years ago
  59. 1a2868b Add tag annotation and tag signing to both release and hotfix. by Vincent Driessen · 15 years ago
  60. ca73caf Replaced all old-style flag variables by shFlags-style flag variables. by Vincent Driessen · 15 years ago
  61. d099126 Tidying up: by Vincent Driessen · 15 years ago
  62. 886c9e1 Merge branch 'feature/tidy-up' into develop by Vincent Driessen · 15 years ago
  63. 27592dd Tidy up: by Vincent Driessen · 15 years ago
  64. c3607ac Put all common functions into separate file gitflow-common. by Vincent Driessen · 15 years ago
  65. 5474e46 If feature diff is called without arguments, compare the changes made in by Vincent Driessen · 15 years ago
  66. 010252a Added an optional <base> argument to all start subactions. by Vincent Driessen · 15 years ago
  67. 9277024 Fix: error message for "Unknown subcommand" by Vincent Driessen · 15 years ago
  68. 3c337fb Added -v (--verbose) flags to list subaction of all subcommands. by Vincent Driessen · 15 years ago
  69. c7ea9b2 Fix: add init to Makefile. by Vincent Driessen · 15 years ago
  70. 5455a6f Allow creation of feature branches even for dirty working trees (using flag -f, --force). by Vincent Driessen · 15 years ago
  71. 4417492 Fix: Of course, in sh, true=0 and false=1. In order to never mess this up by Vincent Driessen · 15 years ago
  72. 1db658f Merge branch 'feature/fix-installer' into develop by Vincent Driessen · 15 years ago
  73. c3b7db9 Added a nicer way of installing/uninstalling git-flow. by Vincent Driessen · 15 years ago
  74. eec73c6 Only push to the origin repo if we wanted to fetch, too. by Vincent Driessen · 15 years ago
  75. c3948cf use correct name of shFlags by Stefan Naewe · 15 years ago
  76. d33e5ea Merge branch 'feature/rebase-subcommand' into develop by Vincent Driessen · 15 years ago
  77. 95bf82c Add support for the -r (--rebase) option, before doing the actual merge. by Vincent Driessen · 15 years ago
  78. 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
  79. c62633f Added initial implementation of the rebase [-i] subcommand. by Vincent Driessen · 15 years ago
  80. 4c92a9d Add 'fatal' prefix for messages, like Git does itself. by Vincent Driessen · 15 years ago
  81. e168487 Fix: quote arg to typeset by Vincent Driessen · 15 years ago
  82. aaec7b3 Merge branch 'feature/allow-diff-without-name-arg' into develop by Vincent Driessen · 15 years ago
  83. 11b1f41 Allow for optional <name> argument in feature diffs. (No name uses the "current" feature branch.) by Vincent Driessen · 15 years ago
  84. b03cf96 Update options for feature's subcommands in usage. by Vincent Driessen · 15 years ago
  85. 1156092 Fix: bug that caused BRANCH variable not to be set correctly. by Vincent Driessen · 15 years ago
  86. aa6d016 Implement showing the currently checked out feature branch in feature list by Vincent Driessen · 15 years ago
  87. e9d2d04 Add TODO item for adding installation of shFlags, too. by Vincent Driessen · 15 years ago
  88. 0a5c730 Merge branch 'feature/verbose-feature-list' into develop by Vincent Driessen · 15 years ago
  89. 1adbc3e Dynamically calculate maximal column width used in verbose feature list output. by Vincent Driessen · 15 years ago
  90. f2536f4 Add initial implementation of the --verbose flag algorithm. by Vincent Driessen · 15 years ago
  91. 60d3d62 Merge branch 'feature/getopt' into develop by Vincent Driessen · 15 years ago
  92. 1b81923 Use shFlags to parse flags given to main and subcommands. by Vincent Driessen · 15 years ago
  93. ea58d0f Added initial implementation of using shFlags. by Vincent Driessen · 15 years ago
  94. 42600d9 Include shFlags repo as a Git submodule. by Vincent Driessen · 15 years ago
  95. d3bc760 Merge branch 'feature/allow-prefixes-as-name-arg-on-finish' into develop by Vincent Driessen · 15 years ago
  96. 7ae320b Fix one old occurence of gitflow_check_ -> gitflow_require_ by Vincent Driessen · 15 years ago
  97. 1ee37e7 Fix one old occurence of gitflow_check_ -> gitflow_require_ by Vincent Driessen · 15 years ago
  98. ea60895 Document which subcommands may use the prefix. by Vincent Driessen · 15 years ago
  99. 8392ed3 Doesn't make sense to allow prefix names for commands that require $BRANCH to be absent. by Vincent Driessen · 15 years ago
  100. 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