본문 바로가기
GitHub

[Problem] cannot remove ... : Device or resource busy

by avvin 2019. 8. 9.

GitHub 원격저장소 히스토리 삭제 (초기화)


 $ rm -rf .git


[Error]
rm: cannot remove '~~~ ': Device or resource busy

>>해당 경로가 사용중인 경우 (프로그램이 열려있었다.)


프로그램 종료하고 다시 시도



1) 기존의 모든 히스토리 삭제

rm -rf .git


2) 현재 소스들로 git repository 다시 생성하기

git init

git add .

git commit -m "Initial commit"


3) 깃허브에 push하기

git remote set-url origin [URL]

git push -u --force origin master


 출처 : https://jobc.tistory.com/167