.gitignore

 1# Ignore everything
 2*
 3
 4# But not these...
 5!/.gitignore
 6
 7!*.go
 8!go.sum
 9!go.mod
10
11!README.md
12!LICENSES/
13!*.license
14
15!.builds/
16!justfile
17
18# ...even if they are in subdirectories
19!*/