gpt4 book ai didi

ubuntu - Git clean 方法来获取以前版本的 sw

转载 作者:行者123 更新时间:2023-12-04 18:39:31 28 4
gpt4 key购买 nike

通过使用 git clone https://github.com/gpac/gpac gpac_public我得到了 1.0.0 版本,rev 156,我需要回到 0.8.0 版本。
我是新的 git 用户,请问如何显示所有可用版本以供下载/git clone,以及将所选先前版本切换为当前版本的干净方式?
谢谢!
吉安

最佳答案

新存储库
git ls-remote .
如果您使用 git ls-remote --tags https://github.com/gpac/gpac你会看到所有的发布标签。
因为你想要的是 v0.8.0 并且它存在于上述列表中,您可以使用以下克隆命令克隆该特定版本中的存储库:

git clone --branch v0.8.0 https://github.com/gpac/gpac gpac_public
另见 this questionthis question .

已经存在的存储库
如果您已经在 HEAD 克隆了存储库(这是您使用 git clone https://github.com/gpac/gpac gpac_public 时发生的情况),那么您可以通过这种方式将历史记录恢复为您想要的标签:
首先确保您位于存储库文件夹中: iuri@ubuntu:~$ cd gpac_public然后在您想要的标签中结帐: iuri@ubuntu:~/gpac_public$ git checkout v0.8.0这将使存储库看起来就像您直接从 克隆的一样。 v0.8.0 标签。

关于ubuntu - Git clean 方法来获取以前版本的 sw,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63107847/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com