Introducing Quests: Tailored gamification & bridging in-person events with your community Mike Gitkos Yesterday at 12:39 PM1 day
Posted July 28, 20222 yr Hi, I'm preparing to update our InVision software. We use an internal Gitlab instance for SCM, and I'd like to put the core files in there before running the update to manage versions. However, I can't find any documentation on or any default .gitignore files. Does anyone have a recommended .gitignore file? Or know what folders/files are considered "core"? I would assume as a starting point anything in /cache and /uploads can be ignored. Any help would be much appreciated. Thanks.
July 28, 20222 yr Solution Hi, this is the file which the developers at IPS use conf_global.php datastore/*.php uploads/logs/*.php uploads/* plugins/hooks.txt constants.php plugins/hooks.php .DS_Store I hope it helps:)
July 29, 20222 yr Author In case anyone else stumbles upon this, I added a few extra folders but it's essentially the same: .idea/ .vscode/ .well-known/ cache/ cgi-bin/ uploads/*/ datastore/*.php plugins/hooks.txt plugins/hooks.php .DS_Store conf_global.php constants.php
August 7, 20222 yr On 7/28/2022 at 4:52 PM, Daniel F said: Hi, this is the file which the developers at IPS use I hope it helps:) Nitpicking... but wouldn't uploads/logs/*.php be covered by uploads/*, so the former one is superfluous?