This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ==== B4A .gitignore ==== <sxh bash> *.dex *.apk *.java *.class Objects /CHANGELOG </sxh> ==== GO .gitignore ==== <sxh> # ---> Go # Compiled Object files, Static and Dynamic libs (Shared Objects) *.o *.a *.so # Folders _obj _test # Architecture specific extensions/prefixes *.[568vq] [568vq].out *.cgo1.go *.cgo2.c _cgo_defun.c _cgo_gotypes.go _cgo_export.* _testmain.go *.exe *.test *.prof # Database *.db # Builds builds /CHANGELOG </sxh> ==== FPC .gitignore ==== <sxh> # ---> FPC # FPC compiler-generated binaries (safe to delete) *.exe *.dll *.bpl *.bpi *.dcp *.so *.apk *.drc *.map *.dres *.rsm *.tds *.dcu *.lib modules lib backup *.dbg *.cfg *Resource.rc # local files (user-specific info) *.local *.identcache *.projdata *.tvsconfig *.dsk # history __history/ *.~* *.stat </sxh>