• VSCode에서 Git Bash를 통합 터미널로 설정하는 방법

    2022. 12. 29.

    by. Yo.

    728x90

    터미널 설정 구성

     

    terminal.integrated.defaultprofile.windows 에서 Git Bash 선택 

     

    만약 해당 옵션이 없다면 settings.json 파일을 열고 terminal.integrated.profiles.windows 항목을 찾고 없다면 추가 .

    주의 : defaultProfile.windows 값은 한 단어여야 작동합니다. 붙여쓰세요.

     

      "terminal.integrated.profiles.windows": {
        "GitBash": { 
            "source": "Git Bash",
            "path": ["C:\\Program Files\\Git\\bin\\bash.exe"],
        },
      },  
      "terminal.integrated.defaultProfile.windows": "GitBash",
    728x90

    댓글