Toggle navigation
4
MINDS
Home
Sobre
Contato
Entrar
4
MINDS
4MINDS Gestão de Conhecimento
remove git file from repository history
Publicado por
Ricardo Bocchi
, 1 de maio de 2023
Git
Geral
4923 Acessos
Baixar em PDF
Removendo um arquivo e seu histórico de um repositório git
git filter-branch -f --index-filter 'git rm --cached --ignore-unmatch FileName' HEAD
git push origin master --force