Mac OS VSCode 터미널 Git 현재 Branch 보이게 설정하기

프로젝트
프로젝트
카테고리
Dev
작성일
2023-07-05
태그
Git
작성자
꾸생
상태
공개

Terminal 실행

VSCode 터미널이 아닌 기본 터미널을 실행

bash 프로필 작성

$ touch .bash_profile

파일 열기

$ open .bash_profile

내용 작성

parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' } export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

파일 실행

$ source .bash_profile

Reference