Files
fibonacci/.gitignore
Rens Houben afa593b9d9
All checks were successful
Gitea Fibonacci test / Explore-Gitea-Actions (push) Successful in 28s
Adding runner action, first try
2025-07-23 13:54:37 +02:00

26 lines
419 B
Plaintext

# Allowlisting gitignore template for GO projects prevents us
# from adding various unwanted local files, such as generated
# files, developer configurations or IDE-specific files etc.
#
# Recommended: Go.AllowList.gitignore
# Ignore everything
*
# But not these files...
!/.gitignore
!*.go
!go.sum
!go.mod
!README.md
!LICENSE
# !Makefile
# ...even if they are in subdirectories
!*/
!.gitea/*
!.gitea/workflows/*