Git下载FFmpeg最新代码

来源: http://www.codecoolie.com/category/ffmpeg/
前不久,ffmpeg 开发团队发生“政变”,作为政变结果之一,貌似 svn 代码库不更新了,只能通过 git 获取代码,所以,不得不开始学习 git 了。
中文资料 Pro Git
http://progit.org/book/zh/index.html
msysgit(必须)
http://code.google.com/p/msysgit/
首次获取 FFmpeg

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

更新 FFmpeg

git fetch origin master
git merge origin master

TortoiseGit (可选)
http://code.google.com/p/tortoisegit/
这个就比较容易使用了,和 TortoiseSVN 基本一样
提醒: 使用该方法获取的是开发组的最新代码,并不是发布版本代码,此代码不适合用来开发商业软件

猜你喜欢

转载自blog.csdn.net/buynow123/article/details/47421889