常规操作
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin 你的仓库地址
git push -u origin main
如果出现fatal: unable to access ‘×ב: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
先执行
git config http.sslVerify false
在执行
git config --global http.sslVerify false