Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以给我详细信息吗
git clone或git clone --mirror
谢谢。我正在尝试备份我的 github 存储库,并在脚本中使用它。
我不知道有什么区别,我需要有人帮助我进行备份。
- 镜子 设置源存储库的镜像。这意味着 --bare。与 --bare 相比,--mirror 不仅将源的本地分支映射到目标的本地分支,它还映射所有 refs(包括远程跟踪分支、注释等)并设置 refspec 配置,以便所有这些 refs被目标存储库中的 git 远程更新覆盖。
- 镜子
设置源存储库的镜像。这意味着 --bare。与 --bare 相比,--mirror 不仅将源的本地分支映射到目标的本地分支,它还映射所有 refs(包括远程跟踪分支、注释等)并设置 refspec 配置,以便所有这些 refs被目标存储库中的 git 远程更新覆盖。
您将获得一个包含所有分支的裸存储库。这就是您想要的备份。