diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-24 20:43:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-24 21:15:57 +0200 |
commit | 93342de1d88081822dad55af70dd4738cd15d242 (patch) | |
tree | 7dd3f6fe644743880f7be2554570bda7497688c7 /doc/git-howto.texi | |
parent | 3ccf22c64a0065fa08fe642500f193394fd83d01 (diff) | |
parent | 6a433fdba82ff241be2e9193f66a43689766e4d7 (diff) | |
download | ffmpeg-93342de1d88081822dad55af70dd4738cd15d242.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
rtmp: Add credit/copyright to librtmp authors for parts of the RTMPE code
rtmp: Move the CONFIG_ condition into the if conditions
aac: Mention abbreviation as well in long_name
build: Skip compiling rtmpdh.h if ffrtmpcrypt protocol is not enabled
doc: Add Git configuration section
configure: Add a dependency on https for rtmpts
rtp: Only choose static payload types if the sample rate and channels are right
Conflicts:
doc/git-howto.texi
libavformat/rtmpproto.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/git-howto.texi')
-rw-r--r-- | doc/git-howto.texi | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/git-howto.texi b/doc/git-howto.texi index cd30b4707b..44e1cc6439 100644 --- a/doc/git-howto.texi +++ b/doc/git-howto.texi @@ -258,6 +258,32 @@ git commit @end example +@chapter Git configuration + +In order to simplify a few workflows, it is advisable to configure both +your personal Git installation and your local FFmpeg repository. + +@section Personal Git installation + +Add the following to your @file{~/.gitconfig} to help @command{git send-email} +and @command{git format-patch} detect renames: + +@example +[diff] + renames = copy +@end example + +@section Repository configuration + +In order to have @command{git send-email} automatically send patches +to the ffmpeg-devel mailing list, add the following stanza +to @file{/path/to/ffmpeg/repository/.git/config}: + +@example +[sendemail] + to = ffmpeg-devel@@ffmpeg.org +@end example + @chapter FFmpeg specific @section Reverting broken commits |