Fix .gitignore patterns
Fixes #110 on Github. As the issue describes, `**` is not the right syntax. We could write `**/*.pyc` instead, but according to https://git-scm.com/docs/gitignore a pattern already matches at any directory level if it doesn't contain `/`. Signed-off-by: Gerwin Klein <gerwin.klein@data61.csiro.au>
This commit is contained in:
parent
d84e2bfae9
commit
17706f02ce
1 changed files with 10 additions and 10 deletions
20
.gitignore
vendored
20
.gitignore
vendored
|
|
@ -5,18 +5,18 @@
|
|||
#
|
||||
|
||||
# generated python bytecode
|
||||
**.pyc
|
||||
*.pyc
|
||||
|
||||
# latex generated files
|
||||
**.aux
|
||||
**.log
|
||||
**.out
|
||||
**.lof
|
||||
**.lot
|
||||
**.bbl
|
||||
**.blg
|
||||
**.toc
|
||||
**.mpx
|
||||
*.aux
|
||||
*.log
|
||||
*.out
|
||||
*.lof
|
||||
*.lot
|
||||
*.bbl
|
||||
*.blg
|
||||
*.toc
|
||||
*.mpx
|
||||
|
||||
tools/parsetab.py
|
||||
manual/env.tex
|
||||
|
|
|
|||
Loading…
Reference in a new issue