Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
development:gitignore [2016/06/20 08:15]
eServices Greece
development:gitignore [2020/06/25 16:47] (current)
eServices Greece [FPC .gitignore]
Line 6: Line 6:
 *.class *.class
 Objects Objects
 +/CHANGELOG
 </sxh> </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>