Files
doom-oxidized/.gitignore
Wesley Irvin 1168d6c7a5 Ignore Cargo.lock
Updated the .gitignore file to add Cargo.lock to be ignored. This
file can safely be ignored and does not need to be checked into
version control.
2023-04-26 12:20:13 -04:00

25 lines
399 B
Plaintext

/target
# Rust
# Rust stuff that we don't want to include in our source control
# Don't include Cargo.lock
Cargo.lock
# End Rust
# WADs
# We want to be able to distribute the shareware WAD (this shouldn't change much)
# and not allow other WADs to be pushed to git
# First ignore the whole WADs directory
WADs/*
# Then cancel the ignore on doom1.wad (shareware)
!WADs/doom1.wad
# End WADs