Debugging the errors I find along the way.
Erro: Dependabot cannot create a pull request as one or more other dependencies require a version that is incompatible with this update.
Solution: Manually update all the dependencies using npm or yarn
npm audit fix
yarn upgrade --latest
Erro: You correct the code, but the eslint still indicates an erro on your code
Solution: (Microsoft solution) Restart the typescript server Ctrl + Shift + P
TypeScript: Restart TS Server
yarn outdated
yarn upgrade-interactive --latest
git checkout -b new-branch origin/new-branch
git log --graph --oneline --all
or
gitk --all
git filter-repo --path [file] --invert-paths
git push --force
git config --global user.name "Mona Lisa"
git config --global user.email "mona@lisa.com"
git config --global --list