无法通过 Git Pull 更新我的 Git 本地存储库

发布于 2024-07-19 11:26:05 字数 240 浏览 5 评论 0原文

我删除了本地 Git 存储库中的一个文件。 我希望通过更新我的 Git 存储库来找回该文件。

我运行以下命令失败,

git pull

它显示 upToDate,但我没有获得最新的文件。 github上的公共仓库不使用SVN,因此问题不可能是SVN。

如何更新本地 Git 存储库,以便将删除的文件恢复到计算机上?

I removed a file in my local Git repo.
I want the file back by updating my Git repo.

I run the following unsuccessfully

git pull

It says upToDate, but I did not get the newest file.
The public repo at github does not use SVN, so the problem cannot be SVN.

How can you update your local Git repo, such that you get your removed File back to your computer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小ぇ时光︴ 2024-07-26 11:26:05

如果尚未提交:

 git checkout path/to/file

If it hasn't been committed yet:

 git checkout path/to/file
勿挽旧人 2024-07-26 11:26:05

August 可能有解决您问题的最佳方法。

您还可以恢复到您提取的最后一个版本:

git reset --hard

August has the probably best way for your problem.

You could also revert to the last version you pulled:

git reset --hard
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文