如何在linux终端中删除git branch.master

时间:2016-01-05 09:00:09

标签: git ubuntu config

当我尝试安装项目时,我收到以下错误。

error: src refspec master does not match any.
error: failed to push some refs to ****

我看了Solution,但找不到解决问题的方法。

链接到我的配置image

1 个答案:

答案 0 :(得分:1)

您的配置存在问题。

尝试再次克隆它,它应该可以工作。

配置master.remote应设为origin而不是github

这就是为什么它不适合你。

修改.git/config并进行更改

[remote "origin"]
    url = https://github.com/omernaci/FilterDesign.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master