使用git存储库中的新内容更新本地文件夹

时间:2019-03-18 08:10:35

标签: github git-bash

我在git bash中使用此命令将git repo克隆到了我的电脑中

git clone https://github.com/xxx/yyy.git

在我的电脑上创建了一个名为yyy的文件夹。

如何用https://github.com/xxx/yyy.git的新内容更新PC上的文件夹yyy(它称为远程仓库)?

我遵循Updating a local repository with changes from a Github repository中的说明,尤其是git pull origin master中的说明,但它们均未起作用,并返回错误$ git pull origin master fatal: Not a git repository (or any of the parent directories): .git

我还尝试了git pull https://github.com/xxx/yyy.git,因为我认为如果成功完成了git clone https://github.com/xxx/yyy.git,则git pull https://github.com/xxx/yyy.git必须正常工作,否则git语法就不好了。

是否应该再次执行“克隆”操作以覆盖PC中的现有文件夹?为什么我不能“拉”?

2 个答案:

答案 0 :(得分:0)

您可能正在yyy文件夹外部执行此命令。您必须先进入它:

cd yyy
git pull

答案 1 :(得分:0)

您需要从克隆的存储库中发出git命令:

cd yyy
git pull