vscode-hg
vscode-hg copied to clipboard
Sub-repositories not listed in workspace
Using extension v1.9.0
, VSCode v1.77.3
. I have a .code-workspace
file referencing a parent repo and some sub-repos as individual folders. The source-control panel is only displaying the parent repo.
Repo structure:
. parent
| -- subA
| -- subB
Workspace config:
{
"folders": [
{
"path": ".",
"name": "parent"
},
{
"path": "subA"
},
{
"path": "subB"
}
]
}
Expecting to see all three as individual repositories.
#33 looks like the same thing, not sure if this had ever been resolved.