I used these links to find out what entries a Katalon .gitignore file should contain:
- [WayBack] ShadowDOMSampleProject/.gitignore at master · katalon-studio-samples/ShadowDOMSampleProject · GitHub
- [WayBack] Git Integration | Katalon Docs
- [WayBack] .gitignore template for Katalon Studio – Katalon Studio / Tips and Tricks – Katalon Community
- [WayBack] katalon-web-automation/.gitignore at master · katalon-studio-samples/katalon-web-automation · GitHub
Combining the above, the .gitignore
file needs to at least contain:
/.classpath /.project /.settings bin/lib/ Libs/ /bin /Libs .settings .classpath settings/internal /.svn /bin/lib/Temp*.class Reports/ .project /libs/Temp*.groovy bin/lib/ bin/keyword/
(funny that .svn
should be in a .gitignore file and that various combinations of casing are used)
–jeroen