rm -rf .git --remove git history
git init -- recreate the repos from the current content only
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin git@<YOUR URL>:<YOUR ACCOUNT>/<YOUR REPO>.git
git push -u --force origin master