gitextract_lv7ob25m/ ├── .codecov.yml ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── AGENTS.md ├── Attic/ │ ├── README.markdown │ ├── git-wip │ └── tests/ │ └── test-git-wip.sh ├── CMakeLists.txt ├── Dockerfile-deb ├── LICENSE ├── README.md ├── cmake/ │ ├── GitVersion.cmake │ └── GitVersion.sh ├── dependencies.sh ├── dev.sh ├── doc/ │ └── git-wip.txt ├── emacs/ │ ├── git-wip-mode.el │ └── git-wip.el ├── flake.nix ├── lua/ │ └── git-wip/ │ └── init.lua ├── src/ │ ├── CMakeLists.txt │ ├── cmd_delete.cpp │ ├── cmd_delete.hpp │ ├── cmd_list.cpp │ ├── cmd_list.hpp │ ├── cmd_log.cpp │ ├── cmd_log.hpp │ ├── cmd_save.cpp │ ├── cmd_save.hpp │ ├── cmd_status.cpp │ ├── cmd_status.hpp │ ├── color.cpp │ ├── color.hpp │ ├── command.hpp │ ├── git_guards.hpp │ ├── git_helpers.hpp │ ├── main.cpp │ ├── print_compat.hpp │ ├── string_helpers.hpp │ └── wip_helpers.hpp ├── sublime/ │ └── gitwip.py ├── test/ │ ├── cli/ │ │ ├── CMakeLists.txt │ │ ├── lib.sh │ │ ├── profile.sh │ │ ├── test_delete.sh │ │ ├── test_help.sh │ │ ├── test_legacy.sh │ │ ├── test_list.sh │ │ ├── test_save_file.sh │ │ ├── test_save_subdir.sh │ │ ├── test_spaces.sh │ │ ├── test_status.sh │ │ ├── test_status2.sh │ │ └── test_status_ref.sh │ ├── nvim/ │ │ ├── CMakeLists.txt │ │ ├── lib.sh │ │ ├── test_nvim_background.sh │ │ ├── test_nvim_buffers.sh │ │ ├── test_nvim_single.sh │ │ └── test_nvim_windows.sh │ └── unit/ │ ├── CMakeLists.txt │ ├── test_git_helpers.cpp │ ├── test_repo_fixture.hpp │ ├── test_string_helpers.cpp │ └── test_wip_helpers.cpp └── vim/ └── plugin/ └── git-wip.vim