1. 11 Jul, 2011 1 commit
  2. 08 Jul, 2011 1 commit
  3. 14 Jun, 2011 2 commits
  4. 23 May, 2011 1 commit
  5. 16 May, 2011 4 commits
  6. 10 May, 2011 2 commits
  7. 27 Apr, 2011 1 commit
  8. 26 Apr, 2011 5 commits
  9. 25 Apr, 2011 2 commits
  10. 23 Apr, 2011 1 commit
  11. 17 Apr, 2011 5 commits
  12. 15 Apr, 2011 1 commit
  13. 14 Apr, 2011 1 commit
  14. 28 Mar, 2011 1 commit
  15. 20 Mar, 2011 2 commits
  16. 14 Feb, 2011 4 commits
  17. 11 Feb, 2011 1 commit
  18. 06 Feb, 2011 2 commits
  19. 05 Feb, 2011 2 commits
    • Vincent Driessen's avatar
      Merge pull request #99 from josephalevin/gitflow · cc5382de
      Vincent Driessen authored
      ---
      
      Not sure if its of interest to you, but I implemented a --defaults flag in git-flow-init so the script doesnt have to prompt for branch names.  My goal is to now make a change in my gitolite install so every new rep is initialized with the git flow model.  Resolves issue 88.
      
      Great work on git-flow.  Im really liking it.
      
      Joseph
      cc5382de
    • Joseph A. Levin's avatar
      Issue: 88 · d2eccaa7
      Joseph A. Levin authored
      Added support for using defaults without prompts when using git flow init.
      d2eccaa7
  20. 04 Feb, 2011 1 commit
    • Vincent Driessen's avatar
      Escape characters from tags that have special meaning in grep. · 1b471a66
      Vincent Driessen authored
      In particular, this fixes the case where a dot in a version name (not
      too uncommon ;)) unintentionally matches a pre-existing tag.  For
      example, if these tags exist:
      
          1.0.1
          1.0b2
      
      And you try to start a new release for 1.0.2, git-flow prevented it,
      since the '.' matches the 'b' in 1.0b2.  This resulted in the invalid
      error message:
      
          Tag '1.0.2' already exists. Pick another name.
      1b471a66