{"id":27096093,"url":"https://github.com/iml885203/vscode-git-open","last_synced_at":"2026-05-08T13:31:44.357Z","repository":{"id":286251476,"uuid":"960849593","full_name":"iml885203/vscode-git-open","owner":"iml885203","description":"helps you quickly open the remote repository of the current project","archived":false,"fork":false,"pushed_at":"2026-02-06T17:39:12.000Z","size":374,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-07T00:43:38.854Z","etag":null,"topics":["git","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iml885203.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-05T07:34:05.000Z","updated_at":"2026-02-06T17:39:16.000Z","dependencies_parsed_at":"2025-05-02T08:25:14.151Z","dependency_job_id":"7b3d4061-ccda-4e74-8593-48db8fb20965","html_url":"https://github.com/iml885203/vscode-git-open","commit_stats":null,"previous_names":["iml885203/vscode-git-open"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iml885203/vscode-git-open","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iml885203%2Fvscode-git-open","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iml885203%2Fvscode-git-open/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iml885203%2Fvscode-git-open/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iml885203%2Fvscode-git-open/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iml885203","download_url":"https://codeload.github.com/iml885203/vscode-git-open/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iml885203%2Fvscode-git-open/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32782482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","vscode-extension"],"created_at":"2025-04-06T09:20:47.126Z","updated_at":"2026-05-08T13:31:44.350Z","avatar_url":"https://github.com/iml885203.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Open - VS Code Extension\n\nQuickly open Git repository pages in your browser. Support for GitHub, GitLab, Bitbucket, and Azure DevOps.\n\n## Features\n\n- **Open Repository**: Quickly open the current Git repository in your browser\n- **Merge Requests/Pull Requests**: View and create merge requests or pull requests\n- **CI/CD**: Access your pipelines and actions directly\n- **Multiple Git Providers**: Support for GitHub, GitLab, Bitbucket, and Azure DevOps\n- **Keyboard Shortcuts**: Quick access to all features\n\n## Keyboard Shortcuts\n\n| Command            | Shortcut         | Description                        |\n|--------------------|-----------------|------------------------------------|\n| Open Repository    | `Alt+G Alt+O`   | Open current repository in browser |\n| Open Merge Requests| `Alt+G Alt+M`   | View merge requests or pull requests|\n| Create Merge Request| `Alt+G Alt+R`  | Create a new merge request         |\n| Open Pipelines     | `Alt+G Alt+P`   | View CI/CD pipelines               |\n| Quick Access       | `Alt+G Alt+G`   | Show all Git Open commands         |\n\n![Quick Pick UI](docs/gitopen.png)\n\n## Requirements\n\n- Git Installed and Available in PATH\n- Active Git Repository With Remote Configured\n\n## Extension Settings\n\n**Note for Private/Self-Hosted GitLab Domains**\n\nIf you are using a private or self-hosted GitLab instance (for example, `git.example.com`), the extension may not automatically recognize your domain as a GitLab server. In this case, you need to manually configure your domain as a GitLab instance in the extension settings to ensure full compatibility.\n\n**How to Configure:**\n\n1. Open VS Code Settings (`Ctrl+,` or `Cmd+,`).\n2. Search for `git-open.providerDomains`.\n3. Add a custom mapping for your domain.\n   For example, to treat `git.example.com` as a GitLab instance, add:\n   ```json\n   {\n     \"git-open.providerDomains\": {\n       \"git.example.com\": \"gitlab\"\n     }\n   }\n   ```\n   You can do this via the settings UI (as an object) or directly in your `settings.json`.\n\n![Provider Domains Configuration](docs/settings.png)\n\nThis tells the extension to treat your specified domain as a GitLab server, enabling all GitLab-specific features.\n\n### Commands Contributed\n\n* `git-open.openRemoteRepo`: Open Remote Repository\n* `git-open.openMergeRequests`: Open Merge Requests/Pull Requests\n* `git-open.createMergeRequest`: Create Merge Request/Pull Request\n* `git-open.openPipelines`: Open Pipelines/Actions\n\n## Troubleshooting\n\n### Extension not detecting Git repository\n\n**Problem**: Commands don't work or show \"Not a Git repository\" error.\n\n**Solution**:\n- Ensure you have Git installed and available in your PATH\n- Verify the folder is a Git repository by running `git status` in the terminal\n- If not a Git repository, click the \"Initialize Git\" button in the error message or run `git init`\n\n### Remote URL not found\n\n**Problem**: Error message \"No remote repository configured\".\n\n**Solution**:\n- Check if your repository has a remote configured: `git remote -v`\n- Add a remote if missing: `git remote add origin \u003cyour-repo-url\u003e`\n- Or click the \"Add Remote\" button in the error message\n\n### Provider not recognized\n\n**Problem**: Extension doesn't recognize your self-hosted Git provider (GitLab, GitHub Enterprise, etc.).\n\n**Solution**: See [Extension Settings](#extension-settings) section below for how to configure custom provider domains.\n\n### Commands not working in multi-repo workspace\n\n**Problem**: Extension doesn't prompt for repository selection.\n\n**Solution**:\n- Ensure each workspace folder is a valid Git repository\n- The extension will automatically detect and prompt you to choose when multiple Git repos are found\n- Your selection is cached and prioritized for future use\n\n## Known Issues\n\nPlease report issues on our [GitHub repository](https://github.com/iml885203/vscode-git-open/issues).\n\n## Release Notes\n\nSee [CHANGELOG.md](CHANGELOG.md) for detailed release notes.\n\n## License\n\nThis extension is licensed under the [MIT License](LICENSE).\n\n**Enjoy!**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiml885203%2Fvscode-git-open","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiml885203%2Fvscode-git-open","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiml885203%2Fvscode-git-open/lists"}