Skip to content

Instantly share code, notes, and snippets.

@toofff
Created May 3, 2021 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toofff/b0eda19edbbdd90e2d3214781b5eda80 to your computer and use it in GitHub Desktop.
Save toofff/b0eda19edbbdd90e2d3214781b5eda80 to your computer and use it in GitHub Desktop.
Git Configuration
[user]
name = My Name
email = my@email.com
[color]
ui = true
[core]
editor = nano
excludesfile = /home/user/.gitignore_global
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[pager]
branch = false
config = false
tag = false
[includeIf "gitdir:~/Sites/"]
path = ~/.gitconfig-profile
[user]
email = my-profile@email.com
signingkey = ...
###################
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
############
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
######################
# Logs and databases #
######################
*.log
*.sql
*.sqlite
get_dump.sh
######################
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
*~
.*.swp
#######
# IDE #
#######
nbproject
.idea
.project
.buildpath
.project
.code-workspace
.vscode
.setting/org.eclipse.php.core.prefs
.settings/org.eclipse.wst.common.project.facet.core.xml
###########
# Symfony #
###########
*~
./bin/symfony_requirements
###############
# SASS / LESS #
###############
.sass-cache/
##############
# NPM / YARN #
##############
npm-debug.log
node_modules/
npm-shrinkwrap.json
##########
# DOCKER #
##########
docker-compose.override.yml
#########
# Other #
#########
issue.md
todo.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment