seong

Vscode - GitBash 설정하기 본문

Flutter/설정 팁

Vscode - GitBash 설정하기

hyeonseong 2023. 1. 3. 20:57

우선 Git이 설치 되어있어야한다.

https://seong9566.tistory.com/107

 

Git 다운로드

구글에 Git 다운로드 검색 Windows이므로 클릭 64-bit 클릭 누르고 계속 next Git실행화면

seong9566.tistory.com

1. Vscode에서 왼쪽 아래 톱니바퀴 클릭 -> terminal.integrated.profiles 검색 -> Windows에서 Edit 클릭

2.아래 처럼 GitBash 추가 

 "terminal.integrated.defaultProfile.windows": "GitBash",
    "terminal.integrated.profiles.windows": {
        "GitBash": {
            "path": ["C:\\workspace\\Git\\bin\\bash.exe"],
            "args": []
        },
        "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로 된다

 


다운로드 중간 발생한 에러

value is not accepted. valid values: null, "powershell", "windows powershell", "command prompt", "javascript debug terminal"

해결방법 - 아래 처럼 "Git Bash"에 공백이 있으면 안된다.