VScode

[vscode] git bash쓰기, git bash를 default terminal로 쓰기

우주유령 2022. 7. 6. 21:40
728x90
반응형

원래는 git bash가 있었는데, 업데이트되면서 빠졌다.

setting.json에 아래와 같은 내용을 추가하면 git bash를 default terminal로 쓸수 있다.

 

{
    //git bash 사용
    "terminal.integrated.profiles.windows": {
        "GitBash": {
            "path": ["D:\\development\\install\\Git\\bin\\bash.exe"], //git이 깔린 위치
        },
    },
    "terminal.integrated.defaultProfile.windows": "GitBash",
}

 

728x90
반응형