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
git status in an installed working copy of g-w develop at 6ea681b returns the following three files as untracked
Untracked files:
(use "git add <file>..." to include in what will be committed)
parm/ufs/post_itag_gfs
parm/ufs/postxconfig-NT-gfs.txt
parm/ufs/postxconfig-NT-gfs_FH00.txt
These files are soft links to sorc/ufs_model.fd/tests/parm. These links were added to sorc/link_workflow.sh by PR #2877. There were not added to .gitignore.
What should have happened?
git status in an unmodified installed working copy of g-w develop should not return untracked files.
What machines are impacted?
All or N/A
Steps to reproduce
clone g-w develop
cd sorc/
./build_all.sh
./link_workflow.sh
git status
git status will return three untracked files
Untracked files:
(use "git add <file>..." to include in what will be committed)
parm/ufs/post_itag_gfs
parm/ufs/postxconfig-NT-gfs.txt
parm/ufs/postxconfig-NT-gfs_FH00.txt
Additional information
This is not a high priority item. It's a simple fix to remove unnecessary files from git status.
Do you have a proposed solution?
To remove these three untracked files from git status, add these three files to .gitignore
@@ -79,6 +79,9 @@ parm/ufs/MOM_input_*.IN
parm/ufs/MOM6_data_table.IN
parm/ufs/ice_in.IN
parm/ufs/ufs.configure.*.IN
+parm/ufs/post_itag_gfs
+parm/ufs/postxconfig-NT-gfs.txt
+parm/ufs/postxconfig-NT-gfs_FH00.txt
parm/wafs
# Ignore sorc and logs folders from externals
The text was updated successfully, but these errors were encountered:
What is wrong?
git status
in an installed working copy of g-wdevelop
at 6ea681b returns the following three files as untrackedThese files are soft links to
sorc/ufs_model.fd/tests/parm
. These links were added tosorc/link_workflow.sh
by PR #2877. There were not added to.gitignore
.What should have happened?
git status
in an unmodified installed working copy of g-wdevelop
should not return untracked files.What machines are impacted?
All or N/A
Steps to reproduce
develop
cd sorc/
./build_all.sh
./link_workflow.sh
git status
git status
will return three untracked filesAdditional information
This is not a high priority item. It's a simple fix to remove unnecessary files from
git status
.Do you have a proposed solution?
To remove these three untracked files from
git status
, add these three files to.gitignore
The text was updated successfully, but these errors were encountered: