Git bash 总是 运行 'export PATH=$PWD/node_modules/.bin:$PATH'
Git bash always run 'export PATH=$PWD/node_modules/.bin:$PATH'
最近我的 git bash 遇到了这个问题,它总是运行命令
export PATH=$PWD/node_modules/.bin:$PATH
每次我打开或开始一个新会话。发生了什么事,这个命令是什么意思?我对 CLI 很陌生,所以我不知道发生了什么。
可能是因为 ~/.bashrc
资源文件,在打开新的 shell 会话时执行。
对于“Git bash”,这意味着 Git for Windows,这意味着“~
”或 $HOME
默认为 %USERPROFILE%
。
或者您正在使用像 antfu/vscode-auto-npx
这样的 VSCode 扩展名,在这种情况下
When you open up a terminal in VS Code, this extension injects PATH
env variable with the local Node.js binaries.
export PATH=$PWD/node_modules/.bin:$PATH
最近我的 git bash 遇到了这个问题,它总是运行命令
export PATH=$PWD/node_modules/.bin:$PATH
每次我打开或开始一个新会话。发生了什么事,这个命令是什么意思?我对 CLI 很陌生,所以我不知道发生了什么。
可能是因为 ~/.bashrc
资源文件,在打开新的 shell 会话时执行。
对于“Git bash”,这意味着 Git for Windows,这意味着“~
”或 $HOME
默认为 %USERPROFILE%
。
或者您正在使用像 antfu/vscode-auto-npx
这样的 VSCode 扩展名,在这种情况下
When you open up a terminal in VS Code, this extension injects
PATH
env variable with the local Node.js binaries.export PATH=$PWD/node_modules/.bin:$PATH