29 lines
675 B
Plaintext
29 lines
675 B
Plaintext
# blank lines are ignored
|
|
# lines starting with '#' are ignored
|
|
# starting patterns with '/' disables recursivity
|
|
# ending patterns with '/' specifies directories
|
|
# starting patterns with '!' negates them
|
|
# standard glob patterns (shell paterns) work:
|
|
# '*' matches zero oro more characters
|
|
# '?' matches a single characters
|
|
# '[abc]' matches the characters inside the brackets
|
|
# '[0-9]' matches the characters inside the brackets
|
|
# '**' matches nested directories (e.g. 'a/**/z')
|
|
# recommended files on 'https://github.com/github/gitignore'
|
|
|
|
.vscode
|
|
.cache*
|
|
.debugger*
|
|
.developer*
|
|
.favorites.json
|
|
.g3-cache*
|
|
.secret*
|
|
.util*
|
|
.vscode
|
|
avanti*
|
|
debug*
|
|
scrap*
|
|
secret*
|
|
TODO*
|
|
*.log
|