vscode-hg icon indicating copy to clipboard operation
vscode-hg copied to clipboard

Sub-repositories not listed in workspace

Open nsgundy opened this issue 1 year ago • 0 comments

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.

nsgundy avatar Apr 24 '23 21:04 nsgundy