git log --graph --abbrev-commit --decorate --format=format:"%C(cyan)%h%C(reset) - %C(green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(yellow)%d%C(reset)" --all
터미널에 위 명령어를 입력하면..
# 설정
git config --global alias.history 'log --graph --abbrev-commit --decorate --format=format:"%C(cyan)%h%C(reset) - %C(green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(yellow)%d%C(reset)" --all'
# 사용
git history
매번 입력하기에는 너무 기니까 git config 명령어로 전역 alias를 설정해 사용해주자
Reference🔽
'Tools > Git, GitHub' 카테고리의 다른 글
[TIL] Git Flow 브랜치 전략 (0) | 2022.07.18 |
---|---|
[TIL] gitmoji 커밋 메시지 컨벤션 (0) | 2022.04.24 |
[TIL] 커밋 메시지 컨벤션 (6) | 2022.01.05 |
[Codeit/Git] #7 Git 자유자재로 활용하기 (4) | 2021.06.08 |
[Codeit/Git] #6 Git 협업하기 (4) | 2021.05.31 |