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
I sometimes use git submodule to get the contents of an external repo in the local repo. Currently, checklist::check_project will check the submodule as well, while this is not needed.
When adding a submodule, git will write a file .gitmodules to the git-root of the project which lists all submodules. Here is an example of the contents:
I think, by default, all paths that are listed in that file should be ignored by checklist::check_project (maybe also checklist::check_package, but I think submodules are not often or never used/needed in that case).
The text was updated successfully, but these errors were encountered:
I sometimes use
git submodule
to get the contents of an external repo in the local repo. Currently,checklist::check_project
will check the submodule as well, while this is not needed.When adding a submodule, git will write a file
.gitmodules
to the git-root of the project which lists all submodules. Here is an example of the contents:I think, by default, all paths that are listed in that file should be ignored by
checklist::check_project
(maybe alsochecklist::check_package
, but I think submodules are not often or never used/needed in that case).The text was updated successfully, but these errors were encountered: