— git — 1 min read
~/.gitconfig 파일을 수정하면 컴퓨터 전체의 git에 적용됨 (~/ ⇐ HomeDirectory)
아래 코드를 .gitconfig에 붙여 넣는다.
.gitconfig
파일이 없을 때아래 커맨드를 사용하면 C:\Users\username
.gitconfig
파일이 생성된다 메모장으로 수정해도된다.
1git config --global user.name tshyeon
커맨드 라인에 입력
1$ git config --global alias.tlg "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold red)%h%C(reset) : %C(bold green)(%ar)%C(reset) - %C(cyan)\<%an\>%C(reset)%C(bold yellow)%d%C(reset)%n%n%w(90,1,2)%C(white)%B%C(reset)%n'"
1git lg 의 -10옵션 10줄2git lg1 또는 lg2로 log명령을 대신한다.3git co 로 checkout명령을 대신한다.4git br 로 branch명령을 대신한다.5git ci 로 commit명령을 대신한다.6git st 로 status명령을 대신한다.7git unstage 로 reset HEAD –명령을 대신한다.8git last 로 log -1 HEAD명령을 대신한다.9git tlg 네이버(toast meetup)에서 본 log alias