How to Git gud
git submodule init git submodule update
git clone <...> --recurse-submodules
git pull --recurse-submodules
To remove tracked files, that should be ignored from .gitignore
git rm -r --cached . && git add . && git commit -am "Remove ignored files"
Last updated 3 years ago
Was this helpful?