관리 메뉴

너와 나의 스토리

[VSCode] Terminal - git bash로 설정하는 방법 본문

개발

[VSCode] Terminal - git bash로 설정하는 방법

노는게제일좋아! 2020. 12. 29. 00:22
반응형
  • Setting 들어가기

    • 단축키: [command+,]
    • [terminal.integrated.shell.windows] 검색
    • [Edit in settings.json] 클릭

 

  • settings.json 수정

    • 아래와 같이 수정
{
    "files.autoSave": "onWindowChange",
    "cmake.configureOnOpen": true,
    "terminal.integrated.shell.osx": "/bin/bash",
    "terminal.integrated.shell.windows": "/usr/local/bin/powershell"
} 

 

 

  • 결과:

반응형
Comments