“Git Filter-Branch-Datei entfernen” Code-Antworten

Git Filter-Branch-Datei entfernen

# Say you have a file (e.g. sensitive, really large,...) that you want removed from
# your repository (local and remote, current and history)
git filter-branch --tree-filter 'rm filename' HEAD


# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository
# https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github
Muddy Moose

Löschen Sie die Datei aus einem Zweiggit

git rm --cached file1.txt
git commit -m "remove file1.txt"
GrepperSasi

Ähnliche Antworten wie “Git Filter-Branch-Datei entfernen”

Fragen ähnlich wie “Git Filter-Branch-Datei entfernen”

Weitere verwandte Antworten zu “Git Filter-Branch-Datei entfernen” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen