报错:
[root@sql01 data]# git push -u origin master
Connection reset by 13.229.188.59 port 22
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
这个问题可能是由于本地git的账号与github上的账号不一致造成的;
解决:
将本地账号、邮箱设置成与github的一样
[root@sql01 ~]# git config --global user.name 'xxx'
[root@sql01 ~]# git config --global user.email 'xxx'