2021-01-04 20:22:48 +00:00
|
|
|
############
|
|
|
|
# Git Ignore
|
|
|
|
|
|
|
|
#Linux trash folder which can appear anywhere
|
|
|
|
.Trash-*
|
|
|
|
|
|
|
|
# .nfs files are created when file is removed but still being accessed
|
|
|
|
.nfs*
|
|
|
|
|
|
|
|
#dont add anyof the symlinks in dir to tracking
|
|
|
|
dir/*
|
|
|
|
|
|
|
|
#but still keep the folder
|
|
|
|
!dir/.gitkeep
|
2021-01-04 20:41:44 +00:00
|
|
|
|
2021-02-08 20:30:02 +00:00
|
|
|
#dont track config.php
|
|
|
|
var/config.php
|
|
|
|
|
2021-02-08 20:36:50 +00:00
|
|
|
#dont track any of the user added resouce files, except the readme and sample
|
|
|
|
resources/*
|
|
|
|
!resources/README.txt
|
|
|
|
!resources/cabinet.png
|
|
|
|
|
2021-01-04 20:41:44 +00:00
|
|
|
#I use vim, therefore ignore temp files and swap files
|
|
|
|
*~
|
|
|
|
*.swp
|
|
|
|
*.swo
|