Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mohitsinghs/vscode-repo
VSCode extension to switch between repositories with ease
https://github.com/mohitsinghs/vscode-repo
git project-management repository-management visual-studio-code vscode vscode-extension
Last synced: about 2 months ago
JSON representation
VSCode extension to switch between repositories with ease
- Host: GitHub
- URL: https://github.com/mohitsinghs/vscode-repo
- Owner: mohitsinghs
- License: mit
- Created: 2022-05-17T02:36:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-19T14:30:11.000Z (4 months ago)
- Last Synced: 2024-10-15T12:13:28.995Z (2 months ago)
- Topics: git, project-management, repository-management, visual-studio-code, vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=mohitsingh.repo
- Size: 163 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Repositories
Switch between repositories with ease
Fastest way to access your local repositories within VSCode
## Features
- **Switch Repositories**: Easily switch between repositories.
- **Auto Repository Detection**: Automatically detect Git repositories.
- **View Options**: Choose between tree or list view.
- **Status Bar Integration**: See the current repository in the status bar.
- **Gitignore Friendly**: Respects your `.gitignore` settings.## Demo
![vscode-repo](https://user-images.githubusercontent.com/4941333/210471039-01677d25-3e61-4e25-84fc-9eae24357bcb.gif)
## Commands
- `Repositories: Edit configuration` - Opens configuration for the repo and allows controlling root paths and scan depth.
- `Repositories: List Repos` - Opens a quick pick list of repositories to switch.## Settings
| Setting | Description | Default Value |
| ---------------------------- | ----------------------------------------------- | ------------- |
| repositories.treeAsDefault | Use tree view as the default. | false |
| repositories.sortByName | Sort tree view by repository names. | false |
| repositories.showInStatusBar | Show the current project in the status bar. | true |
| repositories.preferBundled | Prefer bundled binary; fallback to PATH binary. | true |## Platform Support
The extension is available on all major platforms, including Windows, macOS, and Linux. However, while it's generally compatible with these platforms, please note that testing is more extensive on some platforms than others. If you encounter any issues on your specific platform, feel free to raise an issue with relevant details.
> [!WARNING]
> If you are using **Windows Subsystem for Linux (WSL)**, please be aware that full support might be limited. In WSL, the [repo](https://github.com/mohitsinghs/repo) cli needs to be installed, and it may not work correctly if the PATH is not inherited. You can set `repositories.preferBundled` to `false` to always use the binary from the PATH instead of bundled one. For more information, refer to mohitsinghs/vscode-repo#2 and mohitsinghs/vscode-repo#4.## Inspirations
- [Project Manager](https://github.com/alefragnani/vscode-project-manager)
- [Rust Analyzer](https://github.com/rust-lang/rust-analyzer)