【비망】Vscode나 Windows Terminal에서 Git Bash를 사용하면 뭔가 표시가 달라서 곤란했다
2463 단어 gitbash쉘WindowsTerminalVSCode
TL;TD
C:\\Program Files\\Git\\bin\\bash.exe
를 호출하도록 설정 C:\\Program Files\\Git\\bin\\bash.exe --login -i
를 실행하여 시작한 것처럼 보입니다.어떻게 다른가
C:\\Program Files\\Git\\bin\\bash.exe
의 경우C:\\Program Files\\Git\\bin\\bash.exe --login -i
의 경우Windows Terminal의 경우
"commandline" : "C:\\Program Files\\Git\\bin\\bash.exe"
을 "commandline" : "C:\\Program Files\\Git\\bin\\bash.exe --login -i"
하면 좋다 VScode의 경우
terminal.integrated.shellArgs.windows
에서 windows OS에서 temprinal 런타임 인수를 설정할 수 있습니다 "terminal.integrated.shellArgs.windows": ["--login", "-i"]
왜
참고
Reference
이 문제에 관하여(【비망】Vscode나 Windows Terminal에서 Git Bash를 사용하면 뭔가 표시가 달라서 곤란했다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/willco21/items/e1da81f9ee9226652e42텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)