I am using Mac, Xcode, and Git for development. On my Mac, there are some Xcode projects that are no longer needed and has already been deleted before. However, after I deleted those folders, they always come back couple hours later, with only .git
folder inside each of them. Inside .git
, there is an "objects" folder with many 2-digit number or letter named folders inside. How do I get rid of those project folders and make sure they never come back?
I have already tried cd to each of these folders and use rm -rf .git
and rm -rf .git*
to remove those .git folders, but still they came back.
None of these projects are on my github, so pretty sure that's not the cause.
Does anyone have similar issues?
I encountered this issue before when deleting a project with Xcode still open.
Try this:
rm -rf
on it on a terminal.