forgit

A utility tool powered by fzf for using git interactively.

MIT License

Downloads
175
Stars
4.2K
Committers
61

Bot releases are hidden (Show)

forgit - 24.03.2

Published by cjappl 7 months ago

What's Changed

Full Changelog: https://github.com/wfxr/forgit/compare/24.03.1...24.03.2

forgit - 24.03.1

Published by cjappl 8 months ago

Changes since 24.03.0:

  • Fix homebrew update action to run on tag push (#356)
  • feat(fish): use abbr instead of alias (#348)
    Switch from aliases to abbreviations, as I suggested in
    feat(completions): add completion for fish #344 (comment)
    string collect returns 1 on empty argument, so it's used here to avoid repeating if else end blocks. Another benefit is that the output of string collect is ensured to be a single string. From string --help:
    string collect collects its input into a single output argument, without splitting the output when used in a command substitution. This is useful when trying to collect multiline output from another
    command into a variable. Exit status: 0 if any output argument is non-empty, or 1 otherwise.
    This PR is marked as breaking change, since abbr behaves differently from alias. It can only be used in the interactive command line (so putting exec glo into your scripts won't work).