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.
我不知道如何提出这个问题,我知道变更集是一组变更。
我正在用 bash 编写部署脚本,所以我需要下载最少的代码。我不需要下载整个存储库,我只需要特定标签或哈希的代码,但不仅需要更改,我还需要完整的代码。
这样做的最佳方法是什么?
我用@knittl提议的'git archive'尝试了这个,效果很好
$ git archive v2.0.0 --remote=git@bitbucket.org:john/myapp.git --output=myapp.zip --format=zip
当我没有添加'--format = zip'时尝试解压缩时它抛出了一个错误,它没有像手册页所说的那样从文件名中正确猜到它。