git checkout 中 -‌- 的含义

发布于 2024-12-22 16:41:01 字数 135 浏览 0 评论 0原文

如果我想用另一个分支中的相同文件夹替换工作分支上的文件夹, 我可以打电话:

 git checkout OTHER_BRANCH -- /path/to/folder

-- 是什么意思?

If I want to replace a folder on a working branch with the same folder from another branch,
I can call:

 git checkout OTHER_BRANCH -- /path/to/folder

what is the meaning of the -- ?

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

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

发布评论

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

评论(1

瞄了个咪的 2024-12-29 16:41:01

-- 之后的所有内容都被视为文件名。这至少在两种情况下很有用:

  1. 文件和分支同名。请注意 git checkout foo --git checkout -- foo 文件名之间的区别
  2. ,它们可以解释为标志: git checkout -- -f (或者:git checkout ./-f

Everything after -- is considered a file name. This is useful in at least two cases:

  1. same name for a file and branch. Note the difference between git checkout foo -- and git checkout -- foo
  2. filenames which could be interpreted as flag: git checkout -- -f (alternatively: git checkout ./-f
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文