33 lines
379 B
Plaintext
33 lines
379 B
Plaintext
/result
|
|
.direnv/
|
|
config.yaml
|
|
/server
|
|
/vendor
|
|
pkg/metadatapb/
|
|
|
|
# Ignore all
|
|
*
|
|
|
|
# Unignore all with extensions
|
|
!*.*
|
|
|
|
# Unignore all dirs
|
|
!*/
|
|
|
|
### Above combination will ignore all files without extension ###
|
|
|
|
# Ignore files with extension `.class` & `.sm`
|
|
*.class
|
|
*.sm
|
|
|
|
# Ignore `bin` dir
|
|
bin/
|
|
# or
|
|
*/bin/*
|
|
|
|
# Ignore config.yaml
|
|
config.yaml
|
|
|
|
# Ignore protobuf generated files
|
|
gen/
|