작성
·
2.9K
0
선생님 안녕하세요! 수업 잘 듣고 있습니다.
git reset 파트에서 선생님이 vscode로 실습하시길래 저도 vscode로 실습하려고
터미널에 git bash를 연결하려고 하는데 연결이 되지 않습니다.
>settings에 들어가서
"terminal.integrated.profiles.windows": {
"GitBash": {
"path":["D:\\Git\\bin\\bash.exe"],
"icon":"terminal-bash"
},
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
},
"terminal.integrated.defaultProfile.windows": "GitBash",
해당 코드를 치면 오류가 뜹니다. 무엇이 문제인지 알려주세요 !!
답변 1
0
간단한 것들부터 차근차근 확인해봅시다 :)
1. 혹시 탐색기 등에서 마우스 우측 클릭을 하셨을 때 git bash here가 잘 나오시나요?
2. 아래 사진처럼 VSCode의 "v" 아이콘을 클릭하셨을 때 git bash가 나오시나요?
3. select default profile을 클릭하셨을 때 git bash가 나오시나요?
1~3이 안된다면 git bash를 재설치해주세요.
4. settings에서 GitBash 경로를 아래와 같이 설정하셨는데,
bash.exe 경로가 D:\\Git\\bin\\bash.exe 저 곳이 맞나요? 아니라면 경로 설정을 다시 해 주세요.
GitBash": {
"path":["D:\\Git\\bin\\bash.exe"],
"icon":"terminal-bash"
}
git bash가 설정된 경로는 아래와 같이 확인할 수 있습니다.