gitextract_to9razmh/ ├── .editorconfig ├── .github/ │ ├── .ignore_words │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── stale.yaml ├── .gitignore ├── .gitmodules ├── .pytest.ini ├── AUTHORS ├── CONTRIBUTING.md ├── Commands.md ├── History.md ├── Installation.md ├── LICENSE ├── Makefile ├── Readme.md ├── bin/ │ ├── git-abort │ ├── git-alias │ ├── git-archive-file │ ├── git-authors │ ├── git-browse │ ├── git-browse-ci │ ├── git-brv │ ├── git-bulk │ ├── git-changelog │ ├── git-clear │ ├── git-clear-soft │ ├── git-coauthor │ ├── git-commits-since │ ├── git-contrib │ ├── git-count │ ├── git-cp │ ├── git-create-branch │ ├── git-delete-branch │ ├── git-delete-merged-branches │ ├── git-delete-squashed-branches │ ├── git-delete-submodule │ ├── git-delete-tag │ ├── git-delta │ ├── git-effort │ ├── git-extras │ ├── git-feature │ ├── git-force-clone │ ├── git-fork │ ├── git-fresh-branch │ ├── git-get │ ├── git-gh-pages │ ├── git-graft │ ├── git-guilt │ ├── git-ignore │ ├── git-ignore-io │ ├── git-info │ ├── git-local-commits │ ├── git-lock │ ├── git-locked │ ├── git-magic │ ├── git-merge-into │ ├── git-merge-repo │ ├── git-missing │ ├── git-mr │ ├── git-obliterate │ ├── git-paste │ ├── git-pr │ ├── git-psykorebase │ ├── git-pull-request │ ├── git-reauthor │ ├── git-rebase-patch │ ├── git-release │ ├── git-rename-branch │ ├── git-rename-file │ ├── git-rename-remote │ ├── git-rename-tag │ ├── git-repl │ ├── git-reset-file │ ├── git-root │ ├── git-scp │ ├── git-sed │ ├── git-setup │ ├── git-show-merged-branches │ ├── git-show-tree │ ├── git-show-unmerged-branches │ ├── git-squash │ ├── git-stamp │ ├── git-standup │ ├── git-summary │ ├── git-sync │ ├── git-touch │ ├── git-undo │ ├── git-unlock │ ├── git-unwip │ ├── git-utimes │ └── git-wip ├── brew-release.patch ├── check_dependencies.sh ├── check_integrity.sh ├── etc/ │ ├── bash_completion.sh │ ├── git-extras-completion.zsh │ └── git-extras.fish ├── helper/ │ ├── git-extra-utility │ ├── has-git-commit │ ├── is-git-repo │ └── reset-env ├── install.cmd ├── install.sh ├── man/ │ ├── Readme.md │ ├── git-abort.1 │ ├── git-abort.html │ ├── git-abort.md │ ├── git-alias.1 │ ├── git-alias.html │ ├── git-alias.md │ ├── git-archive-file.1 │ ├── git-archive-file.html │ ├── git-archive-file.md │ ├── git-authors.1 │ ├── git-authors.html │ ├── git-authors.md │ ├── git-browse-ci.1 │ ├── git-browse-ci.html │ ├── git-browse-ci.md │ ├── git-browse.1 │ ├── git-browse.html │ ├── git-browse.md │ ├── git-brv.1 │ ├── git-brv.html │ ├── git-brv.md │ ├── git-bulk.1 │ ├── git-bulk.html │ ├── git-bulk.md │ ├── git-changelog.1 │ ├── git-changelog.html │ ├── git-changelog.md │ ├── git-clear-soft.1 │ ├── git-clear-soft.html │ ├── git-clear-soft.md │ ├── git-clear.1 │ ├── git-clear.html │ ├── git-clear.md │ ├── git-coauthor.1 │ ├── git-coauthor.html │ ├── git-coauthor.md │ ├── git-commits-since.1 │ ├── git-commits-since.html │ ├── git-commits-since.md │ ├── git-continue.1 │ ├── git-continue.html │ ├── git-continue.md │ ├── git-contrib.1 │ ├── git-contrib.html │ ├── git-contrib.md │ ├── git-count.1 │ ├── git-count.html │ ├── git-count.md │ ├── git-cp.1 │ ├── git-cp.html │ ├── git-cp.md │ ├── git-create-branch.1 │ ├── git-create-branch.html │ ├── git-create-branch.md │ ├── git-delete-branch.1 │ ├── git-delete-branch.html │ ├── git-delete-branch.md │ ├── git-delete-merged-branches.1 │ ├── git-delete-merged-branches.html │ ├── git-delete-merged-branches.md │ ├── git-delete-squashed-branches.1 │ ├── git-delete-squashed-branches.html │ ├── git-delete-squashed-branches.md │ ├── git-delete-submodule.1 │ ├── git-delete-submodule.html │ ├── git-delete-submodule.md │ ├── git-delete-tag.1 │ ├── git-delete-tag.html │ ├── git-delete-tag.md │ ├── git-delta.1 │ ├── git-delta.html │ ├── git-delta.md │ ├── git-effort.1 │ ├── git-effort.html │ ├── git-effort.md │ ├── git-extras.1 │ ├── git-extras.html │ ├── git-extras.md │ ├── git-feature.1 │ ├── git-feature.html │ ├── git-feature.md │ ├── git-force-clone.1 │ ├── git-force-clone.html │ ├── git-force-clone.md │ ├── git-fork.1 │ ├── git-fork.html │ ├── git-fork.md │ ├── git-fresh-branch.1 │ ├── git-fresh-branch.html │ ├── git-fresh-branch.md │ ├── git-get.1 │ ├── git-get.html │ ├── git-get.md │ ├── git-gh-pages.1 │ ├── git-gh-pages.html │ ├── git-gh-pages.md │ ├── git-graft.1 │ ├── git-graft.html │ ├── git-graft.md │ ├── git-guilt.1 │ ├── git-guilt.html │ ├── git-guilt.md │ ├── git-ignore-io.1 │ ├── git-ignore-io.html │ ├── git-ignore-io.md │ ├── git-ignore.1 │ ├── git-ignore.html │ ├── git-ignore.md │ ├── git-info.1 │ ├── git-info.html │ ├── git-info.md │ ├── git-local-commits.1 │ ├── git-local-commits.html │ ├── git-local-commits.md │ ├── git-lock.1 │ ├── git-lock.html │ ├── git-lock.md │ ├── git-locked.1 │ ├── git-locked.html │ ├── git-locked.md │ ├── git-magic.1 │ ├── git-magic.html │ ├── git-magic.md │ ├── git-merge-into.1 │ ├── git-merge-into.html │ ├── git-merge-into.md │ ├── git-merge-repo.1 │ ├── git-merge-repo.html │ ├── git-merge-repo.md │ ├── git-missing.1 │ ├── git-missing.html │ ├── git-missing.md │ ├── git-mr.1 │ ├── git-mr.html │ ├── git-mr.md │ ├── git-obliterate.1 │ ├── git-obliterate.html │ ├── git-obliterate.md │ ├── git-paste.1 │ ├── git-paste.html │ ├── git-paste.md │ ├── git-pr.1 │ ├── git-pr.html │ ├── git-pr.md │ ├── git-psykorebase.1 │ ├── git-psykorebase.html │ ├── git-psykorebase.md │ ├── git-pull-request.1 │ ├── git-pull-request.html │ ├── git-pull-request.md │ ├── git-reauthor.1 │ ├── git-reauthor.html │ ├── git-reauthor.md │ ├── git-rebase-patch.1 │ ├── git-rebase-patch.html │ ├── git-rebase-patch.md │ ├── git-release.1 │ ├── git-release.html │ ├── git-release.md │ ├── git-rename-branch.1 │ ├── git-rename-branch.html │ ├── git-rename-branch.md │ ├── git-rename-file.1 │ ├── git-rename-file.html │ ├── git-rename-file.md │ ├── git-rename-remote.1 │ ├── git-rename-remote.html │ ├── git-rename-remote.md │ ├── git-rename-tag.1 │ ├── git-rename-tag.html │ ├── git-rename-tag.md │ ├── git-repl.1 │ ├── git-repl.html │ ├── git-repl.md │ ├── git-reset-file.1 │ ├── git-reset-file.html │ ├── git-reset-file.md │ ├── git-root.1 │ ├── git-root.html │ ├── git-root.md │ ├── git-scp.1 │ ├── git-scp.html │ ├── git-scp.md │ ├── git-sed.1 │ ├── git-sed.html │ ├── git-sed.md │ ├── git-setup.1 │ ├── git-setup.html │ ├── git-setup.md │ ├── git-show-merged-branches.1 │ ├── git-show-merged-branches.html │ ├── git-show-merged-branches.md │ ├── git-show-tree.1 │ ├── git-show-tree.html │ ├── git-show-tree.md │ ├── git-show-unmerged-branches.1 │ ├── git-show-unmerged-branches.html │ ├── git-show-unmerged-branches.md │ ├── git-squash.1 │ ├── git-squash.html │ ├── git-squash.md │ ├── git-stamp.1 │ ├── git-stamp.html │ ├── git-stamp.md │ ├── git-standup.1 │ ├── git-standup.html │ ├── git-standup.md │ ├── git-summary.1 │ ├── git-summary.html │ ├── git-summary.md │ ├── git-sync.1 │ ├── git-sync.html │ ├── git-sync.md │ ├── git-touch.1 │ ├── git-touch.html │ ├── git-touch.md │ ├── git-undo.1 │ ├── git-undo.html │ ├── git-undo.md │ ├── git-unlock.1 │ ├── git-unlock.html │ ├── git-unlock.md │ ├── git-unwip.1 │ ├── git-unwip.html │ ├── git-unwip.md │ ├── git-utimes.1 │ ├── git-utimes.html │ ├── git-utimes.md │ ├── git-wip.1 │ ├── git-wip.html │ ├── git-wip.md │ ├── index.txt │ └── man-template.md ├── need_git_commit ├── not_need_git_repo ├── scripts/ │ └── checkstyle.py └── tests/ ├── README.md ├── bin/ │ ├── open │ ├── start │ └── xdg-open ├── conftest.py ├── git-abort.bats ├── git-alias.bats ├── git-archive-file.bats ├── git-authors.bats ├── git-browse-ci.bats ├── git-browse.bats ├── git-continue.bats ├── helper.py ├── pyproject.toml ├── test_git_abort.py ├── test_git_alias.py ├── test_git_archive_file.py ├── test_git_authors.py ├── test_git_browse.py ├── test_git_browse_ci.py ├── test_git_continue.py └── test_util.sh