git不能pull和push报错信息Push failed: Failed with error: Could not read from remote repository.
7 回答
精慕HU
TA贡献1845条经验 获得超8个赞
建议你按照正确的顺序使用git:
1.开通github账号
2.克隆项目 git clone "链接"
3.从远端下载最新版本 git pull
4.修改
5.将修改增加到版本里 git add *
5.1.修改增加文件夹及以下文件还需git add .
5.2 git add -A 则是两种的结合
6.提交到本地版本库,备注信息 git commit -m "信息"
7.提交到远端服务器 git push
添加回答
举报
0/150
提交
取消