[Git] Git의 손으로 치는 엄청난 명령을 peco 커서 선택으로 수행
1888 단어 ShellScriptGitHubGitGitLab
(명령을 적절하게 alias 등으로 설정하여 사용해보십시오)
peco 설치는 여기
git checkout {branch_name}
git branch | peco | xargs git checkout
이용 이미지
git branch -d {branch_name}
git branch | peco | xargs git branch -d
git reset --soft {commit_hash}
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --soft
이용 이미지
git reset --hard {commit_hash} ( hard이므로 이용주의)
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --hard
이용 이미지
--soft와 동일
git stash apply {stash num}
git stash list | peco | awk -F '{|}' '{print $2}' | git stash apply
이용 이미지
Reference
이 문제에 관하여([Git] Git의 손으로 치는 엄청난 명령을 peco 커서 선택으로 수행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kazuooooo/items/92bf3146cafeb8fd8673
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
git branch | peco | xargs git checkout
git branch | peco | xargs git branch -d
git reset --soft {commit_hash}
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --soft
이용 이미지
git reset --hard {commit_hash} ( hard이므로 이용주의)
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --hard
이용 이미지
--soft와 동일
git stash apply {stash num}
git stash list | peco | awk -F '{|}' '{print $2}' | git stash apply
이용 이미지
Reference
이 문제에 관하여([Git] Git의 손으로 치는 엄청난 명령을 peco 커서 선택으로 수행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kazuooooo/items/92bf3146cafeb8fd8673
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --soft
git log --pretty=oneline | peco | awk '{print $1}' | xargs git reset --hard
이용 이미지
--soft와 동일
git stash apply {stash num}
git stash list | peco | awk -F '{|}' '{print $2}' | git stash apply
이용 이미지
Reference
이 문제에 관하여([Git] Git의 손으로 치는 엄청난 명령을 peco 커서 선택으로 수행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kazuooooo/items/92bf3146cafeb8fd8673
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
git stash list | peco | awk -F '{|}' '{print $2}' | git stash apply
Reference
이 문제에 관하여([Git] Git의 손으로 치는 엄청난 명령을 peco 커서 선택으로 수행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kazuooooo/items/92bf3146cafeb8fd8673텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)