trouble shoot

Git 저장소 하위 폴더 불필요한 파일 한번에 삭제하기

angora79 2023. 5. 13. 14:48

Tucker Go 프로그래밍 실습중 exe 파일을 불필요하게 push 해버렸다.

 

한번에 삭제할 방법을 구글링 해서 찾은 결과를 남겨보자

 

Administrator@DESKTOP-JUSC5N8 MINGW64 ~/workspace/tucker_go__training (main)
$ find ./ -iname "*.exe"
./ex4.1/ex4.1.exe
...
./hello2/hello2.exe

Administrator@DESKTOP-JUSC5N8 MINGW64 ~/workspace/tucker_go__training (main)
$ find ./ -iname "*.exe"  -exec rm {} \;

find로 git 저장소 불필요한 파일들 삭제하기

 

참고자료

https://superuser.com/questions/494951/how-to-recursively-remove-all-exe-files-from-all-the-subdirectories-of-the-curr

 

How to recursively remove all .exe files from all the subdirectories of the current directory?

I have a USB containing important files. However it is infiltrated with some unwanted .exe files (probably virsuses) in each subfolder. Since I am on a Linux machine, the exe files won't affect me.

superuser.com