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 网站下载特殊标签?特别是我想从 contao core repo tag 2.10.4 下载
谢谢
如果你想Contao/core从 github 下载一个特殊的标签,只需附加/tags到 repo URL 地址:https://github.com/contao/core/tags. github准备了一个标签列表,你可以下载它们zip或tar.gz格式化它们。
Contao/core
/tags
https://github.com/contao/core/tags
zip
tar.gz
但通常,您可以clone使用以下命令访问整个项目并访问特殊标签:
clone
git clone https://github.com/contao/core.git git checkout <tag_name>