When submitting a project to GitHub, you might accidentally include sensitive information like passwords or email addresses. Here's how to remove those records, create a brand-new repository, and keep the code unchanged:
-
Create a new blank branch
git checkout --orphan latest_branch
-
Add all files
git add -A
-
Commit the changes