git clone 与复制粘贴,有什么区别?

发布于 2024-12-02 19:44:10 字数 93 浏览 2 评论 0原文

如主题

注释中所述:我的意思是 git 克隆 是没有任何选项的 git 克隆,通过执行“git clone /C:/my_origin_folder”来执行

as stated in the subject

note: the git clone i mean is the git clone without any option, the one which is performed by doing "git clone /C:/my_origin_folder"

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

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

发布评论

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

评论(2

我不吻晚风 2024-12-09 19:44:10

我关于备份的这个答案应该给你一些关于克隆与复制的答案:将 git 存储库移至第二台计算机?

主要区别:

  1. 克隆时,您将获得指向原始存储库的远程 origin 设置,以便您可以推动它。
  2. 克隆时,您不会获得钩子和引用日志(以及旧对象)和其他遥控器,但复制时会获得

注意,当您使用文件夹路径进行克隆时,差异会发生微妙的变化,因为对象和引用通常只是被复制/ 硬链接(相当于 --local 这是本地文件夹路径的默认值)

This answer of mine regarding backup should give you some answer on clone vs copy: Moving a git repo to a second computer?

Main differences:

  1. When you clone, you get remote origin setup pointing to original repo, so that you can push to it.
  2. You don't get hooks and reflog ( and also old objects) and other remotes when you clone but you do when you copy

Note that when you clone with a folder path, the differences change subtly, as the objects and refs are usually just copied / hardlinked ( equivalent of --local which is the default with local folder paths)

£烟消云散 2024-12-09 19:44:10

当您使用 git clone 而不是复制粘贴时,原始存储库将成为源。

此外,当在同一台机器上克隆时,您可以使用 --local 来加快速度。从手册页:

--本地,-l

当要克隆的存储库位于本地计算机上时,此标志会绕过正常的“git 感知”传输机制,并通过复制 HEAD 以及对象和 refs 目录下的所有内容来克隆存储库。 .git/objects/ 目录下的文件被硬链接以尽可能节省空间......

When you use git clone instead of copy paste, the original repository will be the origin.

Besides, when cloning on the same machine you can use --local to make it faster. From the manual page:

--local, -l

When the repository to clone from is on a local machine, this flag bypasses the normal "git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories. The files under .git/objects/ directory are hardlinked to save space when possible....

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