forked from nuneco/functions.sh
Several shell scripts in a wrapper pretending to be automation. User assumes all risk.
http://functions.sh/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
274 B
22 lines
274 B
# @author:jakimfett
|
|
# @description:"Ignore autogenerated folder(s) and file(s)."
|
|
|
|
# Ignore autogenerated folder(s) and file(s)."
|
|
log
|
|
log/*
|
|
tmp
|
|
tmp/*
|
|
*.swp
|
|
*.idx
|
|
|
|
# Ignore configuration file(s)
|
|
*.config
|
|
*.conf
|
|
|
|
# OSX cleanup
|
|
.DS_Store
|
|
|
|
# Ignore assembled binaries
|
|
bin
|
|
bin/*
|
|
|