Skip to content

Instantly share code, notes, and snippets.

@AJ-7885
Last active January 24, 2024 12:45
Show Gist options
  • Save AJ-7885/ef78a177d06c120d9dc3b33ade25cf5f to your computer and use it in GitHub Desktop.
Save AJ-7885/ef78a177d06c120d9dc3b33ade25cf5f to your computer and use it in GitHub Desktop.
Git Ignore template
# misc
.DS_Store
.env
logs/*
!.gitkeep
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws
*.ipr
# NetBeans
nbproject
nb-configuration.xml
# Maven
log/
target/
*/overlays
# Node modules
/node_modules/
node_modules
npm-debug.log
package-lock.json
yarn.lock
# Bower
bower_components
.bower-cache
.bower-registry
.bower-tmp
# Temp files (Gulp Serve generated files)
.tmp
tmp
temp
.swp
# Build
dist
build
registry
version.txt
report
bin
# Tests
coverage
# Sonarqube scanner
.scannerwork/
.sonarlint
@AJ-7885
Copy link
Author

AJ-7885 commented Dec 15, 2018

git config --global core.excludesfile ~/.gitignore_global

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment