macOS에서 별칭 구성
별칭이란 무엇입니까? 🤔
별칭 Korn 쉘 통합 명령은 몇 가지 명령에 대한 별칭/바로 가기로 구문을 설명합니다. 예약어를 재정의하지 않는 경우를 제외하고 별칭을 사용하여 통합 또는 복합 명령어를 재정의할 수 있습니다.
통사론:
alias [ -t ] [ -x ] [ AliasName [ =String ] ] ...
플래그:
-t - Sets or displays all existing tracked aliases
-x - Displays all existing exported alias definitions
종료 상태:
0 - Success
>0 - An error occurred
예시 🙌🏻
alias gs='git status'
macOS에서 별칭을 구성하는 방법은 무엇입니까? 🧑🏻💻
code ~/.zshrc
를 입력합니다내 별칭의 예:
alias gc='git commit -s -m'
alias gs='git status'
alias ga='git add'
alias gfu='git fetch upstream'
alias grum='git rebase upstream/master'
alias gpom='git push origin master'
alias gul='git fetch upstream && git rebase upstream/master && git push origin master'
alias gpo='git push origin'
cmd + s
.source ~/.zshrc
를 입력하여 현재 실행 중인 Zsh 프로세스에 파일 내용을 적용합니다. 가셔도 좋습니다 🎉
컴퓨터에 repo를 입력하고 실행하여 별칭이 작동하는지 테스트할 수 있습니다
gs
.별칭 및 해당 구성에 대해 자세히 알아보려면 https://man7.org/linux/man-pages/man1/alias.1p.html#:~:text=An%20alias%20definition%20provides%20a,subshells%20of%20the%20current%20shell 을 참조하십시오.
Reference
이 문제에 관하여(macOS에서 별칭 구성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/adithyaakrishna/configuring-alias-in-macos-54oi텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)