From 4c5fc8d6a2ee049e8f8804d37163e1467551f868 Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Wed, 20 Jan 2021 21:01:53 +0100 Subject: [PATCH] ignore .idea in .gitignore / remove .idea from index executed git rm -r --cached .idea according to https://stackoverflow.com/questions/1274057/how-to-make-git-forget-about-a-file-that-was-tracked-but-is-now-in-gitignore Signed-off-by: Marcel Hibbe --- .gitignore | 29 ++++++++++------------------- .idea/misc.xml | 9 --------- .idea/runConfigurations.xml | 12 ------------ .idea/vcs.xml | 6 ------ 4 files changed, 10 insertions(+), 46 deletions(-) delete mode 100644 .idea/misc.xml delete mode 100644 .idea/runConfigurations.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index fdc0ff852..94c918a6e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ *.apk *.ap_ -# Files for the ART/Dalvik VM +# Files for the ART/ Dalvik VM *.dex # Java class files @@ -15,6 +15,7 @@ out/ # Local configuration file (sdk path, etc) local.properties +tests/local.properties # Proguard folder generated by Eclipse proguard/ @@ -22,19 +23,14 @@ proguard/ # Log Files *.log -# Android Studio Navigation editor temp files -.navigation/ - -# Android Studio captures folder -captures/ - -# Intellij +# Android Studio and Gradle specific entries *.iml -.idea/workspace.xml -.idea/tasks.xml -.idea/gradle.xml -.idea/dictionaries -.idea/libraries +.gradle +.idea +build +/gradle.properties +captures/ +.navigation/ # Keystore files *.jks @@ -52,9 +48,4 @@ freeline/ freeline_project_description.json .DS_Store -# Android Studio and Gradle specific entries -.gradle/ -build/ -.idea/ -/gradle.properties -/app/gplay/release/output.json + diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index d5d35ec44..000000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460d8..000000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddfb..000000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file