[GIT] 로컬 변경 무시하고 다시 내려받기
출처 :git pull로 로컬 파일 덮어쓰고 싶을 때 git fetch –all git branch backup-master git reset –hard origin/main First, update all origin/<branch> refs to latest: git fetch –all Backup your current branch (e.g. master): git branch backup-master Jump to the latest commit on origin/master and checkout those files: git reset –hard origin/master Explanation: git fetch …