1. 26 Jun, 2014 3 commits
  2. 11 Jun, 2014 1 commit
  3. 10 Jun, 2014 1 commit
  4. 09 Jun, 2014 1 commit
  5. 08 Jun, 2014 2 commits
  6. 06 Jun, 2014 2 commits
  7. 03 Jun, 2014 2 commits
  8. 28 May, 2014 8 commits
  9. 23 May, 2014 1 commit
  10. 21 May, 2014 2 commits
  11. 18 May, 2014 1 commit
  12. 12 May, 2014 1 commit
  13. 08 May, 2014 1 commit
  14. 07 May, 2014 1 commit
  15. 06 May, 2014 1 commit
    • Add filter options and ALLOW_UNSAFE · 5269008c
      Diff and status do not want core.safecrlf to actually raise an
      error regardless of the setting, so this extends the filter API
      with an additional options flags parameter and adds a flag so that
      filters can be applied with GIT_FILTER_OPT_ALLOW_UNSAFE, indicating
      that unsafe filter application should be downgraded from a failure
      to a warning.
      Russell Belfer committed
  16. 02 May, 2014 9 commits
  17. 30 Apr, 2014 2 commits
  18. 29 Apr, 2014 1 commit
    • commit: safer commit creation with reference update · 217c029b
      The current version of the commit creation and amend function are unsafe
      to use when passing the update_ref parameter, as they do not check that
      the reference at the moment of update points to what the user expects.
      
      Make sure that we're moving history forward when we ask the library to
      update the reference for us by checking that the first parent of the new
      commit is the current value of the reference. We also make sure that the
      ref we're updating hasn't moved between the read and the write.
      
      Similarly, when amending a commit, make sure that the current tip of the
      branch is the commit we're amending.
      Carlos Martín Nieto committed