“Remova os arquivos não rastreados git” Respostas de código

Git remove arquivos não rastreados

git clean -fdx
Outrageous Opossum

Git descartou não rastreado

# if you want to clean directories as well add -d
git clean -fd
Quaint Quail

como remover arquivos não rastreados no git

git clean -fd
Thankful Trout

Como excluir arquivos não estudados que foram adicionados recentemente localmente

To see what files will be removed:
git clean -n <optional file_name/dir>

To actually delete those files:
git clean -f <optional file_name/dir>
Vivacious Vole

Git remove arquivos não rastreados

git clean -f
Eastern Fox Squirrel

Remova os arquivos não rastreados git

# Print out the list of files which will be removed (dry run)
git clean -n

# Interactive and you will get a quick overview of what is 
# going to be deleted offering you the possibility to include/exclude 
# the affected files
git clean -i

# To remove files, run
git clean -f
Kirk-Patrick Brown

Respostas semelhantes a “Remova os arquivos não rastreados git”

Perguntas semelhantes a “Remova os arquivos não rastreados git”

Mais respostas relacionadas para “Remova os arquivos não rastreados git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código