일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gitops
- golang
- Helm V3
- http 413
- Logrus
- 대규모 시스템 설계
- Infra
- Bastion Server
- go
- 배포 프로세스
- intellij ide
- Buffered channel
- System Design
- Golines
- goland
- apollo router
- 디자인패턴
- 윈도우키보드
- GoF
- AWS Infra
- UnBuffered channel
- body size
- GoF 디자인패턴
- Intellij
- 배포 파이프라인
- Kubernetes
- notification system
- AWS
- tenneling
- 컴포지트패턴
Archives
- Today
- Total
Fall in IT.
git 명령어 alias 설정하는 방법 본문
Git Client 프로그램(소스트리, github desktop 등)을 사용하다가
Git command를 사용하려고하니, 불편한게 이만저만이 아니였습니다.
그러던 와중에...
git 명령어를 alias하여 사용하면 훨씬 편하지 않을까? 란 생각에 찾아보았더니..
역시나!
많은 사람들이 이렇게 쓰면 편하고 좋다며.. 공유해 놓았네요. ^^
간단하게, Git 명령어 alias 설정하는 방법에 대해서 알아보겠습니다.
Git 명령어 alias 설정하는 방법
- 파일 오픈
$ vi ~/.gitconfig - 아래 쪽에 밑에 코드 추가[alias]st = statusbr = branchco = checkoutll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstatld = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short --graphls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
(더 필요한 명령어는 자유롭게 추가해서 사용하시면 됩니다. 여기 github 주소에서도 소스파일을 다운로드 받으실 수 있습니다. )
결과
참조
- https://github.com/leeduyoung/git-config
- https://stackoverflow.com/questions/2553786/how-do-i-alias-commands-in-git
'기타' 카테고리의 다른 글
Python + Django 환경설정하기 (0) | 2018.05.14 |
---|---|
shell, bash, zbash의 간단 개념정리 (1) | 2018.03.28 |
자주 사용되는 git 명령어 알아보기 (0) | 2018.03.22 |
webpack 개념과 사용방법 (0) | 2018.01.04 |
npm install (plugin) --save와 --save-dev 차이점 (0) | 2018.01.02 |
Comments