Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
development:gitignore [2016/12/21 21:59] eServices Greece |
development:gitignore [2020/06/25 16:47] (current) eServices Greece [FPC .gitignore] |
||
---|---|---|---|
Line 1: | Line 1: | ||
==== B4A .gitignore ==== | ==== B4A .gitignore ==== | ||
- | < | ||
- | *.dex | ||
- | *.apk | ||
- | *.java | ||
- | *.class | ||
- | Objects | ||
- | /CHANGELOG | ||
- | </ | ||
<sxh bash> | <sxh bash> | ||
*.dex | *.dex | ||
Line 18: | Line 10: | ||
==== GO .gitignore ==== | ==== GO .gitignore ==== | ||
- | <clippy> | + | <sxh> |
# ---> Go | # ---> Go | ||
# Compiled Object files, Static and Dynamic libs (Shared Objects) | # Compiled Object files, Static and Dynamic libs (Shared Objects) | ||
Line 50: | Line 42: | ||
# Builds | # Builds | ||
builds | builds | ||
- | </clippy> | + | / |
+ | </sxh> | ||
+ | ==== FPC .gitignore ==== | ||
<sxh> | <sxh> | ||
- | # ---> | + | # ---> |
- | # Compiled Object files, Static and Dynamic libs (Shared Objects) | + | # FPC compiler-generated binaries |
- | *.o | + | *.exe |
- | *.a | + | *.dll |
+ | *.bpl | ||
+ | *.bpi | ||
+ | *.dcp | ||
*.so | *.so | ||
+ | *.apk | ||
+ | *.drc | ||
+ | *.map | ||
+ | *.dres | ||
+ | *.rsm | ||
+ | *.tds | ||
+ | *.dcu | ||
+ | *.lib | ||
+ | modules | ||
+ | lib | ||
+ | backup | ||
+ | *.dbg | ||
- | # Folders | + | *.cfg |
- | _obj | + | *Resource.rc |
- | _test | + | |
- | # Architecture | + | # local files (user-specific |
- | *.[568vq] | + | *.local |
- | [568vq].out | + | *.identcache |
+ | *.projdata | ||
+ | *.tvsconfig | ||
+ | *.dsk | ||
- | *.cgo1.go | + | # history |
- | *.cgo2.c | + | __history/ |
- | _cgo_defun.c | + | *.~* |
- | _cgo_gotypes.go | + | *.stat |
- | _cgo_export.* | + | |
- | _testmain.go | ||
- | |||
- | *.exe | ||
- | *.test | ||
- | *.prof | ||
- | |||
- | # Database | ||
- | *.db | ||
- | |||
- | # Builds | ||
- | builds | ||
- | /CHANGELOG | ||
</ | </ |