1.I am new to GitHub
& working on an Android project. My question is, which files are to be saved/which not on GitHub
for an Android project (Eclipse)?
2.How to delete that folder from Github
using Eclipse?
1.I am new to GitHub
& working on an Android project. My question is, which files are to be saved/which not on GitHub
for an Android project (Eclipse)?
2.How to delete that folder from Github
using Eclipse?
copy this to your .gitignore file
# 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
for deleting that folder use these commands
git rm -r one-of-the-directories
git commit -m "Remove duplicated directory"
git push origin master
or check this [solution]: How to remove a directory from git repository?