alias설정
linux 에서는 bash쉘인데 mac에서는 최근 zshell 로 바뀌었다
bashrc / bash_profile 처럼 zshell 도 같은 개념으로 이해하면 된다
vim ~/.zshrc
혹은 이거겠지?
vim ~/.zsh_profile
나머지는 같다. 이런식으로 만들고
alias gs="git status"
alias gl="git log"
alias gd="git diff"
바로 적용 하려면
source ~/.zshrc
혹은 이거겠지?
source ~/.zsh_profile