VSCode에서 터미널 Git Bash 추가
Git , vscode를 설치 했다는 가정에서 시작합니다
1. Git Bash 설치 경로에서 git-bash.exe 파일을 확인 합니다
2. Ctrl + Shift + P를 눌러 Command Palette를 엽니다.
설정 파일 열기:
Command Palette에 Preferences: Open User Settings (JSON)을 입력하고 선택합니다.
이 옵션을 선택하면 사용자 설정 파일이 열립니다.
터미널 프로필 추가: 사용자 설정 파일에 다음 내용을 추가합니다:
"terminal.integrated.profiles.windows": {
"Git Bash": {
"source": "Git Bash",
"path": [
"Z:\\utils\\Git-2\\bin\\bash.exe"
]
}
},
"terminal.integrated.defaultProfile.windows": "Git Bash"
"Z:\\utils\\Git-2\\bin\\bash.exe" 는 git이 설치된 폴더의 bin에 있습니다 경로는 설치된 환경에 맞추세요
아래와같이 추가 합니다
{
"editor.fontFamily": "D2coding,Consolas, 'Courier New', monospace",
"php.validate.executablePath": "",
"editor.fontSize": 16,
"diffEditor.hideUnchangedRegions.enabled": true,
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.profiles.windows": {
"Git Bash": {
"source": "Git Bash",
"path": [
"Z:\\utils\\Git-2\\bin\\bash.exe"
]
}
},
"terminal.integrated.defaultProfile.windows": "Git Bash"
// "terminal.integrated.defaultProfile.windows": "PowerShell"
}
'APP' 카테고리의 다른 글
20종류 오픈소스 브라우져들 (0) | 2025.02.23 |
---|---|
크로미움(Chromium) 기반의 오픈소스 브라우저 중에서 포터블(portable) 설치가 가능한 브라우저 (0) | 2025.02.17 |
Github 다중 계정 SSH키 등록 (0) | 2025.02.01 |
Git Portable 설치 및 설정 (2) | 2025.01.30 |
페이지 로드 시간을 측정 (1) | 2025.01.07 |