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.
我知道如何使用 SVN,但他们已经转移到 Git。
如其网站所述,获取最新版本的命令是
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
获得特定修订的适当论据是什么?
在克隆的存储库中运行:
git checkout <hash>
要返回主分支运行:
git checkout master
要查找特定的哈希,您可以使用:
git log
或在线浏览 FFmpeg 提交。