본문 바로가기
Knowledge/Tools & Command

[Windows terminal] git bash 연동

by 미네마네모 2020. 9. 7.

Windows Terminal 설치

MS에서 괜찮은 터미널을 출시했다.

(github.com/microsoft/terminal)

Microsoft store에서 설치 가능

위 그림처럼 설치해주자!

설정 창 열기

설정(Ctrl + ,)이 단축키 이다.

 

설정 추가

{
  "guid": "{00000000-0000-0000-ba54-000000000002}",
  "acrylicOpacity" : 0.75,
  "closeOnExit" : true,
  "colorScheme" : "Campbell",
  "commandline" : "\"C:\\Program Files\\Git\\usr\\bin\\bash.exe\" -i -l",
  "cursorColor" : "#FFFFFF",
  "cursorShape" : "bar",
  "fontFace" : "Consolas",
  "fontSize" : 10,
  "historySize" : 9001,
  "icon" : "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico",
  "name" : "Bash",
  "padding" : "0, 0, 0, 0",
  "snapOnInput" : true,
  "startingDirectory" : "%USERPROFILE%",
  "useAcrylic" : true
},
"defaultProfile": "{00000000-0000-0000-ba54-000000000002}",

상단의 코드는 git bash를 터미널로 추가해주는 설정이다.

하단의 코드는 git bash를 guid 기준으로 기본 터미널로 설정하는 것이다.

 

세팅 완료 시 설정

 

댓글