├── .cspell.json ├── .cspell ├── lockfile-words.txt ├── org-user-words.txt └── project-words.txt ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .shellcheckrc ├── LICENSE ├── README.md ├── docs └── images │ └── custom_user_and_staff_symbols.jpg ├── git.scmbrc.example ├── install.sh ├── lib ├── design.sh ├── git │ ├── aliases.sh │ ├── branch_shortcuts.sh │ ├── compatibility.sh │ ├── fallback │ │ └── status_shortcuts_shell.sh │ ├── grep_shortcuts.rb │ ├── grep_shortcuts.sh │ ├── helpers.sh │ ├── keybindings.sh │ ├── repo_index.sh │ ├── shell_shortcuts.sh │ ├── status_shortcuts.rb │ ├── status_shortcuts.sh │ ├── status_shortcuts_refactor.rb │ └── tools.sh └── scm_breeze.sh ├── package.json ├── run_tests.sh ├── scm_breeze.plugin.zsh ├── scm_breeze.sh ├── scmbrc.example ├── test.sh ├── test ├── lib │ ├── design_test.sh │ ├── git │ │ ├── compatibility_test.sh │ │ ├── repo_index_test.sh │ │ ├── shell_shortcuts_test.sh │ │ └── status_shortcuts_test.sh │ └── scm_breeze_test.sh └── support │ ├── shunit2 │ └── test_helper.sh ├── uninstall.sh └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.cspell.json -------------------------------------------------------------------------------- /.cspell/lockfile-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.cspell/lockfile-words.txt -------------------------------------------------------------------------------- /.cspell/org-user-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.cspell/org-user-words.txt -------------------------------------------------------------------------------- /.cspell/project-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.cspell/project-words.txt -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/custom_user_and_staff_symbols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/docs/images/custom_user_and_staff_symbols.jpg -------------------------------------------------------------------------------- /git.scmbrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/git.scmbrc.example -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/install.sh -------------------------------------------------------------------------------- /lib/design.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/design.sh -------------------------------------------------------------------------------- /lib/git/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/aliases.sh -------------------------------------------------------------------------------- /lib/git/branch_shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/branch_shortcuts.sh -------------------------------------------------------------------------------- /lib/git/compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/compatibility.sh -------------------------------------------------------------------------------- /lib/git/fallback/status_shortcuts_shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/fallback/status_shortcuts_shell.sh -------------------------------------------------------------------------------- /lib/git/grep_shortcuts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/grep_shortcuts.rb -------------------------------------------------------------------------------- /lib/git/grep_shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/grep_shortcuts.sh -------------------------------------------------------------------------------- /lib/git/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/helpers.sh -------------------------------------------------------------------------------- /lib/git/keybindings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/keybindings.sh -------------------------------------------------------------------------------- /lib/git/repo_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/repo_index.sh -------------------------------------------------------------------------------- /lib/git/shell_shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/shell_shortcuts.sh -------------------------------------------------------------------------------- /lib/git/status_shortcuts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/status_shortcuts.rb -------------------------------------------------------------------------------- /lib/git/status_shortcuts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/status_shortcuts.sh -------------------------------------------------------------------------------- /lib/git/status_shortcuts_refactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/status_shortcuts_refactor.rb -------------------------------------------------------------------------------- /lib/git/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/git/tools.sh -------------------------------------------------------------------------------- /lib/scm_breeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/lib/scm_breeze.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/package.json -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/run_tests.sh -------------------------------------------------------------------------------- /scm_breeze.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/scm_breeze.plugin.zsh -------------------------------------------------------------------------------- /scm_breeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/scm_breeze.sh -------------------------------------------------------------------------------- /scmbrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/scmbrc.example -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lib/design_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/design_test.sh -------------------------------------------------------------------------------- /test/lib/git/compatibility_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/git/compatibility_test.sh -------------------------------------------------------------------------------- /test/lib/git/repo_index_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/git/repo_index_test.sh -------------------------------------------------------------------------------- /test/lib/git/shell_shortcuts_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/git/shell_shortcuts_test.sh -------------------------------------------------------------------------------- /test/lib/git/status_shortcuts_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/git/status_shortcuts_test.sh -------------------------------------------------------------------------------- /test/lib/scm_breeze_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/lib/scm_breeze_test.sh -------------------------------------------------------------------------------- /test/support/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/support/shunit2 -------------------------------------------------------------------------------- /test/support/test_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/test/support/test_helper.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/uninstall.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scmbreeze/scm_breeze/HEAD/yarn.lock --------------------------------------------------------------------------------