windows下,npm項目有的情況下需要執行bash腳本,如果每次都是從檔案夾通過“Git Bash Here”打開的話,未免也太繁瑣,是以配置vscode的終端為Git Bash,一勞永逸。
打開vscode的設定檔案,settings.json,添加以下設定:
"terminal.integrated.profiles.windows": {
"Git Bash": {
"source": "Git Bash"
}
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
注意:以前的
terminal.integrated.shell.windows
已經廢棄。