git:No remote repository specified 解决方法

git pull代码时候出现,或者push代码无效

fatal: No remote repository specified. Please, specify either a URL or a remote name from which new revisions should be fetched.

解决:
找到本地仓库项目里面的 .git文件夹,找到config打开,修改里面内容为:

1
2
3
4
5
6
7
8
9
10
11
12
[core]
symlinks = false
repositoryformatversion = 0
filemode = false
logallrefupdates = true
[remote "origin"]
url = https://gitee.com/xxx/xxx.git
fetch = +refs/heads//*:refs/remotes/origin//*
pushurl = https://gitee.com/xxx/xxx.git
[branch "master"]
remote = origin
merge = refs/heads/master

把其中

1
2
url = https://gitee.com/xxx/xxx.git
pushurl = https://gitee.com/xxx/xxx.git

换成你项目的地址就可以了。


git:No remote repository specified 解决方法
https://river106.cn/posts/d0635d9e.html
作者
river106
发布于
2018年9月18日
许可协议