본문 바로가기
설치

윈도우11에서 VSCode 기본 터미널 Git Bash 세팅하기

by snowoods 2024. 11. 26.

Windows 11 VSCode Git Bash Terminal Setting

 

개발 과정에서 Windows, Linux, macOS를 사용하는 경우가 많지만, 터미널 작업에서는 Linux 명령어를 주로 활용하게 됩니다. 이러한 상황에서 Windows 11의 VSCode를 사용하면서 기본 터미널로 Git Bash를 설정하면 보다 익숙한 환경을 구축할 수 있습니다.

 

윈도우11, VSCode, Git Bash 세팅

먼저 Git Bash를 설치합니다.

https://git-scm.com/downloads/win

 

Git - Downloading Package

Download for Windows Click here to download the latest (2.47.0(2)) 64-bit version of Git for Windows. This is the most recent maintained build. It was released on 2024-10-22. Other Git for Windows downloads Standalone Installer 32-bit Git for Windows Setup

git-scm.com

인스톨 다이얼로그가 상당히 많지만 그냥 기본값으로 설치해도 문제 없습니다.

(단, Git Bash 설치 경로는 잘 기억합니다.)

 

그리고 VSCode도 설치합니다.

https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 

여기까지 준비 되었다면,

VSCode 사용자 Settings.json 파일을 열고,

Ctrl + ,

 

그리고 아래 내용을 입력하여 찾습니다.

terminal.integrated.profiles.windows

settings.json

 

제일 아래쪽에 "settings.json에서 편집"을 클릭합니다.

 

그럼 현재 설정이 보일텐데,

최상위 중괄호 안에 아래 내용을 복사합니다.

{
    // --- 기존 설정 ---
    
    
    // Git Bash 기본 터미널 설정
    "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"],
            "icon":"terminal-bash"
        }
    },
    "terminal.integrated.defaultProfile.windows": "Git Bash",
}

 

Git Bash 설정의 path 부분에 당신이 설치한 Git Bash 경로를 입력하고

VSCode 기본 터미널로 실행하기 위해 아래를 확인합니다.

주의할 것은 설정에 입력한 이름과 완전히 같아야 한다는 것입니다. 대소문자, 띄어쓰기 등.

"terminal.integrated.defaultProfile.windows": "Git Bash",

 

이제 VSCode를 다시 시작하고

컨트롤 + 백틱

Ctrl + `

 

기본 터미널로 Git Bash를 사용할 수 있습니다.

Git Bash