sampsapursiainen / zeffiro_interface

Interface for using finite elements in inverse problems with complex domains
GNU General Public License v3.0
25 stars 15 forks source link

Removed unnecessary files (.DS_Store and .asv) #57

Closed SeSodesa closed 2 years ago

SeSodesa commented 2 years ago

These include all .DS_Store files, but also all of the Matlab's .asv local backup files. The latter ones are unnecessary, as any changes to be backed up should be in version control anyways.

The removals were achieved with the commands

find . -name .DS_Store | xargs git rm

and

find . -name "*.asv" | xargs git rm

executed in the project root folder. Again, if any of the .asv files included an actual implementation instead of being just a local backup (why would they?), comment on this pull request and the files will be restored from project history.

SeSodesa commented 2 years ago

You might want to merge the pull request (a913efee77c4a473e1f9c61c644ad332d74c15d0) with a modified .gitignore file before merging this one, as that commit prevents the re-addition of these unnecessary files back into the project.