Reset-repository
Last updated
Was this helpful?
Last updated
Was this helpful?
git clone git@github.com:USERNAME/REPOSITORY.git cd REPOSITORY
rm -rf .git
git init
git add . git commit -m "First commit"
git remote add origin git@github.com:USERNAME/REPOSITORY.git git push -u --force origin master