vscode升级到1.60.0之后,命令行窗口默认是powershell,可能自己不是很习惯这种样式,于是想把界面改成git原来的样式。
之前的
"terminal.integrated.shell.windows": "D:\\softWare\\Git\\bin\\bash.exe", //自己的路径
现在的
"terminal.integrated.profiles.windows": {
"bash": {
"path": "D:\\softWare\\Git\\bin\\bash.exe" //自己的路径
}
}