Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nvidia-docker
- 뷰 상태 저장
- List
- Android
- 뷰 상태복구
- moveToState
- RxJava
- 특가게시판
- java.lang.OutOfMemoryError: Java heap space
- kotlin
- Quickly
- 타이머앱
- 올인원타이머
- 특가알람
- android clean architecture
- 안드로이드 클린 아키텍쳐
- recyclerview
- compileKotlin FAILED
- 안드로이드
- todofication
- 특가촌
- fragment
- RX
- 대학톡
- onViewCreated
- 작성
- 카드 내역 공유 앱
- 카드내역 공유
- andorid
- Koin
Archives
- Today
- Total
seoft
ubuntu 터미널 현 디렉토리 우측에 git branch 출력 본문
[문제정의]
다음과같이 ubuntu 터미널 현 디렉토리 우측에 git current branch 출력하기 위함
[해결방안]
0. 작업 환경
ubuntu16.04기준 (18.04도 확인완료)
mobaXterm client로 테스트
1. ~/.bashrc 파일의 가장 밑에 다음 코드를 덧붙임
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
2. 다음 명령어로 변경사항 적용
source ~/.bashrc
[적용사항 비교]
1~2줄 : 적용 전
3~4줄 : 적용 후
[Ref]
https://askubuntu.com/questions/730754/how-do-i-show-the-git-branch-with-colours-in-bash-prompt
'etc' 카테고리의 다른 글
ubuntu java gradle 설치, 환경변수 설정 (0) | 2022.12.18 |
---|---|
Android Studio / intellij 설치 후 초기 세팅 (0) | 2020.01.06 |
Tensorflow Docker 환경에서 GPU 연동 (0) | 2019.12.15 |
Ubuntu 18.04 설치 ~ nvidia-docker 세팅 (0) | 2019.12.15 |
git merge, rebase, cherry-pick, reset, Squash and merge 정리 (0) | 2019.09.27 |
Comments