├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── new-feature.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO.md ├── __mocks__ └── vscode.js ├── image.png ├── images └── logo.png ├── jest.config.js ├── lint-staged.config.js ├── package.json ├── release.config.js ├── src ├── constants │ └── constants.ts ├── extension.ts ├── git │ └── operations │ │ └── worktree │ │ ├── gitWorktreeAdd.ts │ │ ├── gitWorktreeList.ts │ │ └── gitWorktreeRemove.ts └── helpers │ ├── gitHelpers.test.ts │ ├── gitHelpers.ts │ ├── gitWorktreeHelpers.ts │ ├── helpers.ts │ ├── logger.ts │ ├── stringHelpers.test.ts │ ├── stringHelpers.ts │ └── vsCodeHelpers.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.github/ISSUE_TEMPLATE/new-feature.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/TODO.md -------------------------------------------------------------------------------- /__mocks__/vscode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/__mocks__/vscode.js -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/image.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/images/logo.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/jest.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/package.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/release.config.js -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/constants/constants.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/git/operations/worktree/gitWorktreeAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/git/operations/worktree/gitWorktreeAdd.ts -------------------------------------------------------------------------------- /src/git/operations/worktree/gitWorktreeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/git/operations/worktree/gitWorktreeList.ts -------------------------------------------------------------------------------- /src/git/operations/worktree/gitWorktreeRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/git/operations/worktree/gitWorktreeRemove.ts -------------------------------------------------------------------------------- /src/helpers/gitHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/gitHelpers.test.ts -------------------------------------------------------------------------------- /src/helpers/gitHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/gitHelpers.ts -------------------------------------------------------------------------------- /src/helpers/gitWorktreeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/gitWorktreeHelpers.ts -------------------------------------------------------------------------------- /src/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/helpers.ts -------------------------------------------------------------------------------- /src/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/logger.ts -------------------------------------------------------------------------------- /src/helpers/stringHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/stringHelpers.test.ts -------------------------------------------------------------------------------- /src/helpers/stringHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/stringHelpers.ts -------------------------------------------------------------------------------- /src/helpers/vsCodeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/src/helpers/vsCodeHelpers.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexiszamanidis/vscode-git-worktrees/HEAD/yarn.lock --------------------------------------------------------------------------------