Tips
[Windows Terminal] Git Bash 추가하기
Sungwoo Koo
2023. 4. 25. 03:15
Windows Terminal을 설치 했는데, Git bash가 설치되어 있음에도 불구하고 없을 경우가 있습니다.
그럴 경우, Git Bash를 Windows Terminal에 추가해서 아래 그림처럼 탭에 생성하는 과정입니다.
1. 아래 방향 화살표를 눌려, 설정을 클릭
2. Json 파일 열기 클릭
3. "profiles" 부분 수정
"profiles": {
"defaults": {},
"list": [
{
"commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"hidden": false,
"name": "Windows PowerShell"
},
{
"commandline": "%SystemRoot%\\System32\\cmd.exe",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"hidden": false,
"name": "\uba85\ub839 \ud504\ub86c\ud504\ud2b8"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{124fc1da-dadc-4276-9c4e-f0524ba57a49}",
"name": "Git Bash",
"commandline": "\"%PROGRAMFILES%\\git\\usr\\bin\\bash.exe\" -i -l",
"icon": "%PROGRAMFILES%\\git\\mingw64\\share\\git\\git-for-windows.ico",
"startingDirectory": "%USERPROFILE%",
"cursorShape": "filledBox",
"hidden": false
}
]
}