11.2 Cache säubern
https://stackoverflow.com/questions/13716658/how-to-delete-all-commit-history-in-github
Beispielsweise wenn eine Datei > 100 mb groß ist und dadurch eine commit Fehlermeldung auftritt.
# Type in Terminal
# Checkout
--orphan latest_branch
git checkout # Add all the files
-A
git add # Commit the changes
-am "commit message"
git commit # Delete the branch
-D main
git branch # Rename the current branch to main
-m main
git branch # Finally, force update your repository
-f origin main
git push #PS: this will not keep your old commit history around