Created
June 10, 2016 09:32
-
-
Save JoeChapman/7d65fb0af7de00455a600360eaf61b77 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1: remove all history | |
rm -rf .git | |
Step 2: reconstruct the Git repo with only the current content | |
git init | |
git add . | |
git commit -m "Initial commit" | |
Step 3: push to GitHub. | |
git remote add origin <github-uri> | |
git push -u --force origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment