Last active
October 24, 2022 09:39
-
-
Save ErShakirAnsari/49d576da2575b72cfdf935cca33faefd to your computer and use it in GitHub Desktop.
Common gitignore file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Android ### | |
# Gradle files | |
.gradle/ | |
build/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Android Studio generated files and folders | |
captures/ | |
.externalNativeBuild/ | |
.cxx/ | |
*.apk | |
output.json | |
# Keystore files | |
*.jks | |
*.keystore | |
# Google Services (e.g. APIs or Firebase) | |
google-services.json | |
# Android Profiling | |
*.hprof | |
#### eclipse ### | |
.project | |
.classpath | |
.settings | |
### sts ### | |
.apt_generated | |
.factorypath | |
.springBeans | |
.sts4-cache | |
### intelliJ idea ### | |
.idea/ | |
*.iml | |
misc.xml | |
deploymentTargetDropDown.xml | |
render.experimental.xml | |
*.iws | |
*.ipr | |
### netbeans ### | |
/nbproject/private/ | |
/build/ | |
/nbbuild/ | |
/dist/ | |
/nbdist/ | |
/.nb-gradle/ | |
### maven ### | |
target/ | |
pom.xml.tag | |
pom.xml.releaseBackup | |
pom.xml.versionsBackup | |
pom.xml.next | |
release.properties | |
dependency-reduced-pom.xml | |
buildNumber.properties | |
.mvn/timing.properties | |
.mvn/wrapper/maven-wrapper.jar | |
### java ### | |
*.class | |
*.ctxt | |
.mtj.tmp/ | |
*.jar | |
*.war | |
*.nar | |
*.ear | |
*.zip | |
*.tar.gz | |
*.rar | |
hs_err_pid* | |
replay_pid* | |
### other ### | |
.DS_Store | |
*.log | |
### user-defined ### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment