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
The .gitignore file is missing some build products. This causes git status to report untracked files and results in the directory showing as 'dirty' after building when used as a submodule. Git status should report as clean even after compilation.
To Reproduce:
Build model with tests/compile.sh (I don't think the configuration matters)
Run git status
Observe the untracked file list:
Untracked files:
(use "git add <file>..." to include in what will be committed)
compile_0_time.log
tests/modules.ufs_model.lua
tests/ufs_common.lua
nothing added to commit but untracked files present (use "git add" to track)
Additional context
Should be able to resolve by simply adding the files above to the .gitignore file.
Output
The text was updated successfully, but these errors were encountered:
Description
The
.gitignore
file is missing some build products. This causesgit status
to report untracked files and results in the directory showing as 'dirty' after building when used as a submodule. Git status should report as clean even after compilation.To Reproduce:
tests/compile.sh
(I don't think the configuration matters)git status
Additional context
Should be able to resolve by simply adding the files above to the
.gitignore
file.Output
The text was updated successfully, but these errors were encountered: