나를 금요일까지 데려다주는 Git 별칭
1998 단어 gitaliasshellproductivity
나를 금요일까지 데려다주는 Git 별칭
SVN에서 Git으로 전환한 후 지난 몇 년 동안 저는 작업 흐름을 간소화하고 생산성을 높이는 데 도움이 되는 몇 가지 별칭을 선택했습니다. 결국 지름길의 요점은 삶을 더 쉽게 만드는 것입니다. 제 별칭을 여러분과 공유하고 싶지만 별 도움이 되지 않을 수도 있습니다.
분기
co = checkout # Shortcut for checkout.
nb = checkout -b # Create a new branch and check it out.
bl = branch -l # List all local branches.
br = branch -r # List all remote branches.
blr = branch -a # Show local and remote branches.
bd = branch -d # Politely ask Git to delete a local branch.
bdf = branch -D # Sternly ask Git to delete a local branch.
가져오기/동기화/병합
fp = fetch -p # Fetch and prune.
sync = !git pull && git push # Pull then push current branch.
mm = !git fetch -p && git merge origin/master #Merge remote master into the current branch.
커밋
cm = commit # Shortcut for commit.
cma = commit -a # Commit all tracked.
cmam = commit -a -m # Commit all tracked with message to follow.
runAway = reset --hard # For when you just want it all to go away.
forgetAbout = rm --cached # Make Git forget about a tracked file.
유용
alias = config --get-regexp ^alias\\. # List all aliases.
ec = config --global -e # Open .gitconfig in your default editor.
저는 이 모든 것을 가지고 있으며 시간이 지나면 더 많은 것을 Git 구성에서 원하는 경우[include]
편리한 문서GitHub repo로 읽을 수 있습니다.
이 별칭이 나에게 유용한 것처럼 귀하에게도 유용하기를 바랍니다.
좋아하는 별칭이 있다면 아래 댓글에 남겨주세요.
Reference
이 문제에 관하여(나를 금요일까지 데려다주는 Git 별칭), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/megamattmiller/the-git-aliases-that-get-me-to-friday-1cmj
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
co = checkout # Shortcut for checkout.
nb = checkout -b # Create a new branch and check it out.
bl = branch -l # List all local branches.
br = branch -r # List all remote branches.
blr = branch -a # Show local and remote branches.
bd = branch -d # Politely ask Git to delete a local branch.
bdf = branch -D # Sternly ask Git to delete a local branch.
fp = fetch -p # Fetch and prune.
sync = !git pull && git push # Pull then push current branch.
mm = !git fetch -p && git merge origin/master #Merge remote master into the current branch.
cm = commit # Shortcut for commit.
cma = commit -a # Commit all tracked.
cmam = commit -a -m # Commit all tracked with message to follow.
runAway = reset --hard # For when you just want it all to go away.
forgetAbout = rm --cached # Make Git forget about a tracked file.
alias = config --get-regexp ^alias\\. # List all aliases.
ec = config --global -e # Open .gitconfig in your default editor.
Reference
이 문제에 관하여(나를 금요일까지 데려다주는 Git 별칭), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/megamattmiller/the-git-aliases-that-get-me-to-friday-1cmj텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)