A tool used to generate .bak files when it is used for comparing two files. One way to fix this is to mentioned the extension .bak in .gitignore file. The other way is to manually find and the remove the files recrusively
find . | grep .bak | xargs rm -rf
No comments:
Post a Comment