我已将我的集成终端设置为bash,如下所示:
#header{
background-color: limegreen;
padding:10px;
width:150px;
position:fixed;
top:0;
right:0;
}
window.onscroll = changePos;
function changePos() {
var header = document.getElementById("header");
if (window.pageYOffset > 30) {
//header.style.position = "absolute";
header.style.float = "right";
//header.style.top = pageYOffset + "px"
} else {
header.style.position = "";
header.style.top = "";
}
}
Bash正在运行,但是当我尝试运行像npm,node这样的东西时,它说没有找到命令。如果我运行独立的git bash.exe(不是bin文件夹中的那个),它可以正常工作,但是你必须在bin文件夹中运行它才能将它集成,我需要做些什么来修复它?