[已解决]Android Studio/ IDEA项目上传GitHub报错
有三种情况

1. 控制台输出:
Can’t finish GitHub sharing process
Successfully created project ‘项目名’ on GitHub, but initial commit failed:
*** Please tell me who you are.
Run
git config --global user.email “you@example.com”
git config --global user.name “Your Name”
to set your account’s default identity.
Omit --global to set the identity only in this repository.
出现在第一次使用Git或曾经修改过用户名
解决办法已经很明确, 运行Git_CMD, 按照如上指令设置邮箱和姓名

2. 控制台输出:
Can't finish GitHub sharing process
Successfully created project '项目名' on GitHub, but initial push failed:
unable to access 'https://github.com/用户名/项目仓库/': OpenSSL SSL_read: Connection was reset, errno 10054
首先检查是否设置了代理
取消代理项
修改代理项
需要去查看自己的软件端口号, Clash默认是7890

3. 在Android Studio内分享项目到GitHub时remote已存在
换一个名字或者在VCS/Git -> Manage Remotes...选项卡中删除之前的项目

以上问题在IDEA中同理
希望能帮到你❤