seong
Vscode - GitBash 설정하기 본문
우선 Git이 설치 되어있어야한다.
https://seong9566.tistory.com/107
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"에 공백이 있으면 안된다.
'Flutter > 설정 팁' 카테고리의 다른 글
Flutter - Error Lens 상세 에러 표시하기 (0) | 2023.01.10 |
---|---|
Flutter - 위젯의 부모 표시하기 , previewFlutterUiGuides (0) | 2023.01.10 |
Flutter 파란 줄 없애기 (0) | 2023.01.10 |
Vscode - flutter 에뮬레이터 설치 (0) | 2023.01.03 |
Vscode - flutter 환경변수 설치 (1) | 2023.01.03 |