├── .editorconfig ├── .github ├── dependabot.yml ├── issue_template.md ├── pull_request_template.md ├── scripts │ └── changelog.sh ├── stale.yml └── workflows │ ├── aur.yaml │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── bin └── git-forgit ├── completions ├── _git-forgit ├── git-forgit.bash └── git-forgit.fish ├── conf.d ├── bin │ └── git-forgit └── forgit.plugin.fish ├── forgit.plugin.sh ├── forgit.plugin.zsh └── tests ├── clean-select-files.test.sh ├── fzf.test.sh └── helper-functions.test.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/scripts/changelog.sh -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/aur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/workflows/aur.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ._zinit/ 2 | *.zwc 3 | lib/ 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/README.md -------------------------------------------------------------------------------- /bin/git-forgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/bin/git-forgit -------------------------------------------------------------------------------- /completions/_git-forgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/completions/_git-forgit -------------------------------------------------------------------------------- /completions/git-forgit.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/completions/git-forgit.bash -------------------------------------------------------------------------------- /completions/git-forgit.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/completions/git-forgit.fish -------------------------------------------------------------------------------- /conf.d/bin/git-forgit: -------------------------------------------------------------------------------- 1 | ../../bin/git-forgit -------------------------------------------------------------------------------- /conf.d/forgit.plugin.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/conf.d/forgit.plugin.fish -------------------------------------------------------------------------------- /forgit.plugin.sh: -------------------------------------------------------------------------------- 1 | forgit.plugin.zsh -------------------------------------------------------------------------------- /forgit.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/forgit.plugin.zsh -------------------------------------------------------------------------------- /tests/clean-select-files.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/tests/clean-select-files.test.sh -------------------------------------------------------------------------------- /tests/fzf.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/tests/fzf.test.sh -------------------------------------------------------------------------------- /tests/helper-functions.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wfxr/forgit/HEAD/tests/helper-functions.test.sh --------------------------------------------------------------------------------