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