https://github.com/jonas/tig
http://jonas.nitro.dk/tig/manual.html
보통 gui 환경의 sourcetree 를 많이 사용하는데, 터미널에서 vi 로 작업하는 경우 tig 사용이 더 편할때가 있다.(마우스에 손이 안가도 되니까^^)
# 맥에서 brew 로 설치(리눅스는 apt-get , yum 을 사용)
brew install tig
tig 을 실행하면 현재 저장소의 소스 히스토리가 나타나며 항목에서 엔터하면 상세 정보창이 표시된다.
# tig 명령(vi 와 비슷하다.)
h (도움말 보기)
q 또는 :q (종료)
m (메인 보기)
d (diff 보기)
l (로그 보기)
t (디렉토리 보기)
s (상태 보기)
c (스테이지 보기)
y (스태시 보기)
/ (찾기)
n (다음 찾기)
N (이전 찾기)
F (파일명 토글)
X (id토글)
G (커밋 그래프 토글)
R (reload)
C (cherry-pick)
# .tigrc 에 tig 관련 설정을 할 수 있다.
# https://github.com/jonas/tig/blob/master/tigrc 를 기본으로 가져와 복붙하고 필요한 부분은 수정.
vi ~/.tigrc
# tig 기본 커서 컬러는 다음과 같다.
color cursor white green bold
# tig 기본 커서 컬러는 다음과 같다.
color cursor white green bold
# iterm one-dark 컬러를 사용중인데 white green 대비가 적어 글자가 잘 보이지 않아 .tigrc 에 다음과 같이 설정했다.
# 컬러명 대신 256 컬러 숫자를 사용할 수 있다.
# 테마에 따라 다르겠지만 대략적인 256 컬러 참고 https://jonasjacek.github.io/colors/
color cursor white 88 bold
color title-blur white 130
color title-focus white 130 bold
# 컬러명 대신 256 컬러 숫자를 사용할 수 있다.
# 테마에 따라 다르겠지만 대략적인 256 컬러 참고 https://jonasjacek.github.io/colors/
color cursor white 88 bold
color title-blur white 130
color title-focus white 130 bold
comments:
댓글 쓰기