Is it safe to add xmlparser/ to .gitignore when developing android project in EclipseADT?
Right now I am using recommended:
*.pydevproject
.metadata
.gradle
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# sbteclipse plugin
.target
# TeXlipse plugin
.texlipse
I am asking because files marked as "deleted" are in red in git bash:
Nenad@I3770K ~/eclipseADT/AA4AB_V3 (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: xmlparser/.classpath
deleted: xmlparser/.project
deleted: xmlparser/AndroidManifest.xml
deleted: xmlparser/gen/android/support/v7/appcompat/R.java
deleted: xmlparser/gen/com/example/xmlparser/BuildConfig.java
deleted: xmlparser/gen/com/example/xmlparser/R.java
deleted: xmlparser/ic_launcher-web.png
deleted: xmlparser/libs/android-support-v4.jar
deleted: xmlparser/proguard-project.txt
deleted: xmlparser/project.properties
deleted: xmlparser/res/drawable-hdpi/ic_launcher.png
deleted: xmlparser/res/drawable-mdpi/ic_launcher.png
deleted: xmlparser/res/drawable-xhdpi/ic_launcher.png
deleted: xmlparser/res/drawable-xxhdpi/ic_launcher.png
deleted: xmlparser/res/layout/activity_main.xml
deleted: xmlparser/res/menu/main.xml
deleted: xmlparser/res/values-v11/styles.xml
deleted: xmlparser/res/values-v14/styles.xml
deleted: xmlparser/res/values-w820dp/dimens.xml
deleted: xmlparser/res/values/dimens.xml
deleted: xmlparser/res/values/string.xml
deleted: xmlparser/res/values/strings.xml
deleted: xmlparser/res/values/styles.xml
deleted: xmlparser/src/com/example/xmlparser/HandleXML.java
deleted: xmlparser/src/com/example/xmlparser/MainActivity.java
no changes added to commit (use "git add" and/or "git commit -a")
UPDATE: To be more precise, I can't find those folders at all. Workspace is AA4AB_V3, and there are several projects within it. But whatever I do (run projects, clean and rebuild) I can't make them come to existence. They do not exist at all. I don't know where Git found them, but in order shown in that log those folders don't exist. Projects are working fine, and I don't recall that such folders ever existed in first place during creation of android projects.
As pointed out by user VonC Some time ago I ran through this xmlparser tutorial. When I think of it now, yes I named it xmlparser and then renamed it WeatherApp, and later closed project. What I don't know is why is Git keeping info about "deleted" folders, and how should I clean this if it is in some sort of cache?