문제

I know how to do it with SVN, but they've moved to Git.

The command for getting the newest version as described on their site is

git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg

What would be the appropriate arguments for getting a specific revision?

도움이 되었습니까?

해결책

In the cloned repository run:

git checkout <hash>

To return to the master branch run:

git checkout master

To find a particular hash you can use:

git log

or browse FFmpeg commits online.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top