vscode打开文件夹 .git文件夹不在目录,git graph提升“there are no commits in this repository”。怎么在vscode中指定 .git文件夹目录
时间: 2023-05-23 18:01:28 浏览: 664
你可以在 VS Code 中使用命令行指定 .git 文件夹目录的路径,为此你需要在设置中设置文件路径。
在 VS Code 中打开终端并输入命令 `git config —list`,找到 `core.worktree` 属性,该属性应该包含 `.git` 文件夹的路径。如果该属性不包含 `.git` 文件夹的路径,则可以使用以下命令将其设置为正确的路径:
```
git config core.worktree "path/to/your/folder"
```
其中, `path/to/your/folder` 是包含 .git 文件夹的文件夹的路径。设置成功后,您应该可以在 VS Code 中使用 Git Graph 插件浏览您的 Git 仓库。
阅读全文