Git Branch 복원 절차
Tip2018. 10. 5. 17:15Git Branch 복원 절차

출처: https://stackoverflow.com/questions/4674226/does-github-keep-deleted-remote-branches-in-history-if-so-can-those-be-restore * 로컬 Git log를 이용하여 복원 작업이 이루어지기 때문에, 가장 최근에 해당 브랜치를 이용했던 사람이 branch 복원 작업을 진행해야 최신 상태로 복원 가능. 1. 해당 프로젝트의 로컬 directory 경로로 이동 2. 마우스 오른쪽 클릭 후, 'Git Bash Here' 클릭 4. Command창에 아래 순서대로 명령어 입력 4-1. 아래 명령어를 입력하여 Git log 기록을 조회하고 해당 branch의 commit id 확인 $ git reflog 4-2. 아래 명..

image