-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update .gitignore #2882
Update .gitignore #2882
Conversation
@@ -8,6 +8,7 @@ | |||
*.os | |||
*.pyc | |||
*.so | |||
*.so.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To also match libdolfinx.so.0.8
and libdolfinx.so.0.8.0.0
.
@@ -16,8 +17,6 @@ | |||
*.dylib | |||
*.nbi | |||
*.nbc | |||
dolfinx/libdolfin.so* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed, there is already a match for all .so
.
@@ -42,9 +41,6 @@ python/doc/source/generated/ | |||
cpp/dolfinx/common/version.h | |||
|
|||
# Configuration files | |||
dolfin.conf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These have the old name dolfin
.
@@ -58,20 +54,17 @@ test_*_tempdir | |||
|
|||
# Tests | |||
/python/test/unit/**/*.xml | |||
/cpp/test/unit/mesh/*.{xml,m} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C++ unit tests are not in cpp/test/unit
anymore, so I removed everything.
@@ -58,20 +54,17 @@ test_*_tempdir | |||
|
|||
# Tests | |||
/python/test/unit/**/*.xml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ find . -name '*.xml'
gives me
./python/test/unit/io/xml_value_collection_ref.xml
./python/test/unit/fem/gmsh_unit_interval.xml
./python/test/unit/fem/tetrahedron.xml
I grep
-ed for the first two and I can't find them every being used.
|
||
.cache | ||
|
||
# FFCx generated demo files | ||
cpp/demo/**/**/*.h | ||
cpp/demo/documented/cahn-hilliard/CahnHilliard2D.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C++ demos are not in cpp/demo/documented
, so this is safe to remove.
Let me know about |
I'll comment below each change