This is rather weird because even before I made my first commit to the remote repository, I made sure that my gitignore
was all set and ready. My gitignore for my Android project looks like this:
# Built application files
*.apk
*.ap_
# Files for the Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
However, when I did
Right Click - Team - Remote - Push, everything got pushed to the remote repository. Which is strange.
What have I done wrong?