{"id":14070631,"url":"https://github.com/felipecaputo/git-project-manager","last_synced_at":"2026-02-21T11:32:03.647Z","repository":{"id":6139592,"uuid":"49912625","full_name":"felipecaputo/git-project-manager","owner":"felipecaputo","description":"A Git Project Manager extension for vsCode","archived":false,"fork":false,"pushed_at":"2024-08-23T21:08:32.000Z","size":1154,"stargazers_count":96,"open_issues_count":41,"forks_count":33,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-17T05:26:44.875Z","etag":null,"topics":["git","hacktoberfest","vscode"],"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/felipecaputo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2016-01-18T23:33:13.000Z","updated_at":"2025-12-16T05:25:09.000Z","dependencies_parsed_at":"2024-08-13T07:17:41.572Z","dependency_job_id":"9c12d3b8-bf0c-44a9-9ca2-431d83db4311","html_url":"https://github.com/felipecaputo/git-project-manager","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/felipecaputo/git-project-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipecaputo%2Fgit-project-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipecaputo%2Fgit-project-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipecaputo%2Fgit-project-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipecaputo%2Fgit-project-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/felipecaputo","download_url":"https://codeload.github.com/felipecaputo/git-project-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/felipecaputo%2Fgit-project-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29679821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T11:29:27.227Z","status":"ssl_error","status_checked_at":"2026-02-21T11:29:20.292Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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","hacktoberfest","vscode"],"created_at":"2024-08-13T07:07:58.178Z","updated_at":"2026-02-21T11:32:03.630Z","avatar_url":"https://github.com/felipecaputo.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Git Project Manager\n\n[![Build Status](https://travis-ci.org/felipecaputo/git-project-manager.svg?branch=master)](https://travis-ci.org/felipecaputo/git-project-manager)\n\nGit Project Manager (GPM) is a Microsoft VSCode extension that allows you to open a **new window targeting a git repository** directly from the VSCode window.\n\n## Available commands\n\nCurrently there are 3 available commands, all of them can be accessed via the VSCode [command palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette) (`Ctrl+Shift+P` on Windows and \n`Cmd+Alt+P` on Mac) by typing **GPM**.\n\n### GPM: Open Git Project *(Defaults to: `Ctrl+Alt+P`)*\nShows a list of the available git repositories in all folders configured in **`\"gitProjectManager.baseProjectsFolders\"`**.\nThe first time its opened, it searches all folders, after that it uses a cached repository info.\n\n![open Git Project](/img/openProject.gif)\n\n### GPM: Refresh Projects\nThis command refreshes the cached repositories info for all configured folders.\n\n### GPM: Refresh specific project folder\nThis command allows you to select a specific folder and refresh its repositories, without\nrefreshing all folders.\n\n### GPM: Open Recent Git Project *(Defaults to `Ctrl+Shift+Q`)*\nThis command opens a list of your most recent git projects, letting you swap even faster between them.\n\nThe size of the list is configured in `\"gitProjectManager.recentProjectsListSize\"`.\n\n## Available settings\n\nBefore you can start using GPM, you need to configure the base folders that the extension will use to\nsearch for git repositories. Edit `settings.json` from the **File -\u003e Preferences -\u003e Settings** and add the\nfollowing config:\n\n```json\n    {\n        \"gitProjectManager.baseProjectsFolders\": [\n            \"/home/user/nodeProjects\",\n            \"/home/user/personal/pocs\"\n        ]\n    }\n ```\n\nAnother available configuration is `\"gitProjectManager.storeRepositoriesBetweenSessions\"` that allows\ngit repositories information to be stored between sessions to avoid the waiting time when you first load the repositories list. It's set to `false` by default.\n\n ```json\n    {\n        \"gitProjectManager.storeRepositoriesBetweenSessions\": true\n    }\n```\n\nTo improve performance there are 2 new and important configurations:\n\n1. **ignoredFolders**: an array of folder names that will be ignored (*node_modules for example*)\n\n    ```json\n    {\n        \"gitProjectManager.ignoredFolders\": [\"node_modules\"]\n    }\n    ```\n\n2. **maxDepthRecursion**: indicates the maximum recursion depth that will be searched starting in the configured folder (default: `2`)\n\n    ```json\n    {\n        \"gitProjectManager.maxDepthRecursion\": 4\n    }\n    ```\n\nIn version 0.1.10 we also added the `\"gitProjectManager.checkRemoteOrigin\"`\nconfiguration that allows users to not check remote repository origin\nto improve performance:\n\n ```json\n    {\n        \"gitProjectManager.checkRemoteOrigin\": false\n    }\n```\n\nAdded in version 0.1.12, you can configure the behavior when opening a project if it will be opened in the same window\nor in a new window. (*this option is ignored if there aren't any opened folders in current window*)):\n\n```json\n    {\n        \"gitProjectManager.openInNewWindow\": false\n    }\n ```\n\n## Participate\n\nIf you have any ideas, feel free to create issues and pull requests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelipecaputo%2Fgit-project-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelipecaputo%2Fgit-project-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelipecaputo%2Fgit-project-manager/lists"}