git - зависание на удаленном конце - PullRequest
0 голосов
/ 09 мая 2019

Итак, я обнаружил, что в публичном проекте github хранится некоторая критическая информация. Так как проект был новым, я решил его взорвать и просто выдвинуть новейшую версию в качестве нового репо.

Я удалил его на github и создал новый с тем же именем. Внутри моего проекта я сделал следующее:

git init
git remote rm origin
git add .
git commit -m "init repo"
git remote add origin https://github.com/username/repoName
git push -u origin master

это вывод:

Enumerating objects: 4453, done.
Counting objects: 100% (4453/4453), done.
Delta compression using up to 4 threads
Compressing objects: 100% (4242/4242), done.
fatal: unable to read ae5d8c36ac6522065cc0df746b8d61c947fb76e0
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
error: failed to push some refs to 'https://github.com/username/repoName'

Что я сделал не так и почему происходит такое поведение?

...