Git
How to Git gud
Submodule (repo in a repo)
git submodule init
git submodule updategit clone <...> --recurse-submodulesgit pull --recurse-submodulesTo remove tracked files, that should be ignored from .gitignore
git rm -r --cached . && git add . && git commit -am "Remove ignored files"Last updated
Was this helpful?