[FFmpeg-cvslog] commit: Add muxer for IVF format. ( Reimar Döffinger )

Stefano Sabatini stefano.sabatini-lala
Tue Jan 18 08:50:53 CET 2011


On date Tuesday 2011-01-18 08:02:07 +0100, Reimar D?ffinger wrote:
> On Mon, Jan 17, 2011 at 10:08:41PM +0100, Stefano Sabatini wrote:
> > On date Monday 2011-01-17 21:12:36 +0100, git at videolan.org wrote:
> > > ffmpeg | branch: master | Reimar D?ffinger <Reimar.Doeffinger at gmx.de> | Mon Jan 17 21:11:51 2011 +0100| [326851b9bc172cda341e13df0c63a467d011eeda] | committer: Reimar D?ffinger 
> > > 
> > > Add muxer for IVF format.
> > > 
> > > > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=326851b9bc172cda341e13df0c63a467d011eeda
> > > ---
> > > 
> > >  libavformat/ivfenc.c |   69 ++++++++++++++++++++++++++++++++++++++++++++++++++
> > >  1 files changed, 69 insertions(+), 0 deletions(-)
> > 
> > Missing: Changelog entry, lavf minor bump.
> 
> Depends on how you define "missing". I used only "git commit" instead
> of "git commit -a", thus only the file I added via "git add" ended up
> as part of the commit, I had all the other changes locally but the
> committed one misses far more than just changelog.

Git tips of the day
~~~~~~~~~~~~~~~~~~~

git diff
shows the difference between the INDEX (changes cached to be committed)
and the current tree.

git diff HEAD
shows the difference with the HEAD revision, so it will
show also the cached changes.

git diff -c
shows only the changes already cached (that is in the index).

Useful commands when pushing a commit:
git show
git show --stat
git push --dry-run

Then there is:
git commit --amend 

if you need to quickly amend the last commit, and git rebase -i for
rebasing the branch, e.g. for changing the order of the patches in a
branch and for squashing / deleting / rewording commits.



More information about the ffmpeg-cvslog mailing list