ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • git log visualizer
    Practical_skills/git 2019. 7. 13. 23:50

    git log나 branch 등의 효과적으로 보기 위한 tool인
    pretty git branch grpah 라는 것이 있다.

    $ gedit ~/.gitconfig
    로 들어가서


    [alias]
    lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
    lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
    lg = !"git lg1"


    의 내용을 복붙해주자.
    alias는 긴 명령어를 짧게 줄여주는 역활을 한다.
    $ git lg
    $ git lg1
    $ git lg2
    명령을 command 창에 써보자.

    'Practical_skills > git' 카테고리의 다른 글

    git 사용하기(3)  (0) 2019.07.16
    git 사용하기 (2)  (0) 2019.07.13
    git 사용하기 (1)  (0) 2019.07.13

    댓글

Designed by Tistory.