This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"estadoPorDdd": { | |
"11": "SP", | |
"12": "SP", | |
"13": "SP", | |
"14": "SP", | |
"15": "SP", | |
"16": "SP", | |
"17": "SP", | |
"18": "SP", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Comandos | |
git config --global user.name "wesllyakatsuka" | |
//Configura o seu nome de usuário (Tem que ser o mesmo cadastrado no memomento da conta) | |
git config --global user.email [email protected] | |
//Configura o seu nome de usuário (Tem que ser o mesmo cadastrado no memomento da conta) | |
git status | |
//Exibe tudos os arquivos dentro de uma pasta e aponta se estão ou não sendo rastreados |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Como ver quais pacotes estão instalados globalmente na sua máquina e quais suas versões. | |
npm list -g --depth=0 | |
Como deletar o pacote desejado globalmente da maquina | |
npm uninstall -g nomeDoPacote | |
Como ver se tem algum pacote ou arquivo especifico npm com problema | |
npm audit | |
Concertar automaticamente os pacotes ou arquivos do npm com problema |
NewerOlder