You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into issue with running cargo test --release generating new binary files that were not being ignored properly because the file case did not match the case in the gitignore file in the same directory.
Would look to consolidate the ignored files to a single ignore file at the root of the project directory based on file extensions and directories and at this at the top to handle binary files with no extension.
#Do not modify these first three ignore rules. Needed to ignore files with no extension
# Ignore all files including binary files that have no extension
*
# Unignore all files with extensions
!*.*
# Unignore all directories
!*/
# Add specific file extensions and directories below
The text was updated successfully, but these errors were encountered:
Ran into issue with running
cargo test --release
generating new binary files that were not being ignored properly because the file case did not match the case in the gitignore file in the same directory.Would look to consolidate the ignored files to a single ignore file at the root of the project directory based on file extensions and directories and at this at the top to handle binary files with no extension.
The text was updated successfully, but these errors were encountered: