티스토리 뷰

프로그래밍/Git

[git] branch표기

차고차곡 2019. 9. 27. 11:35
1) branch 표기
[test-dev@local ~](master)
[test-dev@local ~](dev)

2) git이 관리되는 프로젝트로 이동하여, 아래 파일을 내려받자.
# cd [프로젝트 경로]
# wget https://raw.github.com/git/git/master/contrib/completion/git-completion.bash
# wget https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh

# mv git-completion.bash .git-completion.bash
# mv git-prompt.sh .git-prompt.sh

3) .bashrc 에 아래의 내용 추가
source ~/.git-prompt.sh
source ~/.git-completion.bash
# 기본
#PS1='[\u@\h \W]$(__git_ps1 "(%s)")\$ '

#색상적용
#PS1='[\u@\h \W]$(__git_ps1 "\[\e[32m\](%s)\[\e[0m\]")\$ '
( * 색상은 원하는 색상으로 수정하여 적용가능하다. )

4) 소스 적용
source .bashrc

 

'프로그래밍 > Git' 카테고리의 다른 글

[git] git 버전 update on Centos7  (0) 2021.03.23
[git] 원격저장소 연결 설정 및 해제  (0) 2021.03.23
댓글