This project is mirrored from https://github.com/oh-my-fish/oh-my-fish.git. Updated .
  1. 10 Apr, 2020 2 commits
  2. 22 Mar, 2020 7 commits
  3. 29 Feb, 2020 1 commit
  4. 27 Feb, 2020 2 commits
  5. 17 Feb, 2020 1 commit
  6. 12 Oct, 2019 1 commit
  7. 03 Oct, 2019 13 commits
  8. 02 Oct, 2019 1 commit
  9. 24 Aug, 2019 1 commit
  10. 23 Jul, 2019 4 commits
  11. 14 Jun, 2019 4 commits
  12. 13 Jun, 2019 1 commit
  13. 08 Jun, 2019 2 commits
    • PoorPockets McNewHold's avatar
      Little typos. · f96c18f7
      PoorPockets McNewHold authored
      Well, It worked with pastfish, I didn’t bother to check the entire readme.md for more of these.
      f96c18f7
    • Fabian Homborg's avatar
      lib/git/git_is_touched: Speed up (#706) · 131c8d74
      Fabian Homborg authored
      * lib/git/git_is_touched: Speed up
      
      This used to use `git status --porcelain`, which by necessity needs to
      check the entire repo for all kinds of changes, just to figure out if
      there are any.
      
      Instead, we now use git commands that can exit early.
      
      In large repos, this can be faster by a factor of 15 or so.
      
      Fixes #624.
      
      * Fix return status
      
      `git diff` also returns 1 if there *is* a diff.
      131c8d74