文章目录
时效性
本篇撰写时间为2021.12.16,由于计算机技术日新月异,博客中所有内容都有时效和版本限制,具体做法不一定总行得通,链接可能改动失效,各种软件的用法可能有修改。但是其中透露的思想往往是值得学习的。
Windows 10家庭中文版,版本20H2,操作系统内部版本19042.1348
本篇前置:
- ExpRe[0] VSCode[0] 安装和基础使用,联动Markdown,联动知乎
https://www.cnblogs.com/minor-second/p/15528264.html - 有一个github账号,并有一个自己的库,用于尝试操作。使用过
Git Bash
等做版本管理
插件:Git Project Manager
在vscode中Ctrl+Shift+X
寻找插件,
版本如上图
配置设置
https://marketplace.visualstudio.com/items?itemName=felipecaputo.git-project-manager
Before start using GPM you need to configure the base folders that the extension will search for git repositories. Edit settings.json from the File -> Preferences -> Settings and add the following config
即:选择File -> Preferences -> Settings,
这里看到Edit in settings.json
按钮
具体配置方法参见官方文档。一个示例:
{
"gitProjectManager.baseProjectsFolders":
[
"/home/user/nodeProjects",
"/home/user/personal/pocs"
]
}
注:如果在Windows系统使用,需要把/
改为\\
例如