Remove .godot folder and its remaining files still in git tracking #92
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request
Despite
.godot
being put in .gitignore, some files are still tracked by git. I think because the line.godot
was only added to the .gitignore file sometime after the project was initialized. Git wouldn't track new files added to the.godot
folder, but it still tracks the old files, which can cause some issue.To remove the files, what I did was to run this.
After this PR is merged, most users would need to reimport a few files, but it should work fine. Worse case scenario, they'll need to delete their
.godot
folder.Background issue
A lot of times after I sync my fork to the latest commit, I'll get these changes after I open the project in Godot.
This is despite the fact I didn't do anything to the scene. I assumed it has to do something with the
.godot
folder. But since some files are still tracked by git, I couldn't just remove the.godot
folder because I'll see something like this.This problem should be fixed after this PR is merged, though.