git2 git stash 복구 방법 실수로 git stash list에 있는 항목을 삭제했을 때 복구하는 방법이다. # stash의 hash 값과 저장 시간을 확인한다. git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk # 위 명령어에서 확인한 hash 값을 이용해서 apply한다. git stash apply {hash} 2023. 1. 2. [Git] 브랜치 일괄 삭제 git에 생성된 branch를 일괄 삭제하는 방법 git branch | grep "\[삭제하고싶은 이름\]" | xargs git branch -D Example git branch | grep "feature/" | xargs git branch -D 2022. 8. 23. 이전 1 다음