>> ERROR: You're using an RSA key with SHA-1, which is no longer allowed. Please use a newer client or a different key type.
>> ssh-keygen -t ecdsa -b 521 -C "email"
>> cat ~/.ssh/id_rsa.pub
>> git config --global user.name "用户名"
>> git config --global user.email "用户邮箱"
>> git remote prune origin
>> git branch -a
>> git checkout [分支名]
>> git branch -D [分支名]
>> git branch -delete [分支名]
前一个是强制删除
>> git push origin --delete [分支名]
>> git pull
>> git push
>> git remote set-url origin [git地址]
>> git clone --recursive [git地址]
>> git reset --hard HEAD~[N条记录]
>> git push -f origin