Git
How to Git gud
Submodule (repo in a repo)
git submodule init
git submodule update
To 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?