Shouldn’t need them but WILL

Delete everything and start a fresh master branch

git checkout —orphan tmp-master # create a temporary branch git rm -r —cached git add . # Add all files and commit them git commit -m ‘Add files’ git branch -D master # Deletes the master branch git branch -m master # Rename the current branch to master git push -f origin master # Force push master branch to Git server