Skip to content

salescamila/debugging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dúvidas que vou tendo ao longo do caminho

Can't resolve github Dependabot alert

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

ESLint error with correct code TypeScript

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

Checkout outdated packages and update them

yarn outdated
yarn upgrade-interactive --latest

[GIT] Create new branch

git checkout -b new-branch origin/new-branch

[GIT] Log as graph

git log --graph --oneline --all
  or
gitk --all

[GIT] Remove file from commit history

git filter-repo --path [file] --invert-paths
git push --force

[GIT] Set username and e-mail

git config --global user.name "Mona Lisa"
git config --global user.email "[email protected]"

git config --global --list 

About

Dúvidas que vou tendo ao longo do caminho

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published