Git克隆设置为原始,无法从远程存储库读取

时间:2019-06-15 08:13:49

标签: git access

我的同事努力发展。我的同事的项目版本完全不同。他已经实现了新功能,我可以看到他的提交,但是我的项目中根本不包含这些提交。
git fetch remote

fatal: 'remote' does not appear to be a git repository fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.

到目前为止,我已经完成:

git clone https://github.com/tihomirtodorov/HotelManagement.git
git checkout -b develop git fetch remote

当我使用git remote -v

它为我提供了

origin https://github.com/tihomirtodorov/HotelManagement.git (fetch)        origin https://github.com/tihomirtodorov/HotelManagement.git (push)

我还重新安装了git,甚至将develop分支下载为.zip,但我无法获得他所做的最新更改。

请帮助,该项目应在星期一完成,我需要编写一些单元测试。

2 个答案:

答案 0 :(得分:1)

var obj = {aaa: "came", bbb: "saw", ccc: "conquered", zzz: "discarded" }; var str = "I {aaa}, I {bbb}, I {ccc}. Then I {aaa} again."; const output = str.replace(/{([^}]+)}/g, (_, prop) => obj[prop]); console.log(output);的意思是“从名为git fetch remote的远程存储库中获取所有更新”,并且您没有配置名为remote的存储库。

您只想使其remote。有关语法的详细信息,请参见git fetch

答案 1 :(得分:0)

我们所做的是我们从development创建了一个分支,我设法将其设置为origin,并且运行良好。