VSCode Git Bash를 default로 설정

Slowly But Surely·2023년 10월 6일

VSCode 실행 후 f1 키 눌러

Preferences: Open User Settings (JSON) 클릭

아래 내용 작성


    "terminal.integrated.profiles.windows": {
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell"
        },
        "Command Prompt": {
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
        "Git Bash": {
            "source": "Git Bash",
            "path": ["C:\\Program Files\\Git\\bin\\bash.exe"]
        }
    },
    "terminal.integrated.defaultProfile.windows": "Git Bash"
profile
안녕하세요

0개의 댓글