[FFmpeg-soc] Request for a svn soc account

Robert Swain robert.swain at gmail.com
Tue Jul 1 15:46:42 CEST 2008


2008/7/1 zhentan feng <spyfeng at gmail.com>:
> Hi
>
> 2008/7/1 Diego Biurrun <diego at biurrun.de>:
>
>> On Sun, Jun 29, 2008 at 09:00:05PM +0800, zhentan feng wrote:
>> >
>> > 2008/6/29 Diego Biurrun <diego at biurrun.de>:
>> >
>> > > On Sun, Jun 29, 2008 at 10:09:36AM +0800, zhentan feng wrote:
>> > > >
>> > > > I am maintaining MXF mux code on git and show the changes at
>> > > > http://gitorious.org/projects/ffmpeg/repos/FFmpeg-clone-MXF-muxer.
>> > > >
>> > > > Now I want switch it to soc svn, could I  have a account?
>> > > >
>> > > > username: zhentan Feng
>> > >
>> > > Send me an encrypted email with a username consisting of one word and
>> > > the password you wish to have.
>> >
>> > It seems that I should know your public key to encrypt the password which
>> I
>> > wish to have,
>> > or you can set a password for me with my public key attached as below.
>> >
>> > username:spyfeng
>>
>> Account created.
>>
>
> thanks.
> however, where do I start to use the svn soc?
> any general rules and instructions?

MPlayer's DOCS/tech/svn-howto.txt is quite useful for some things so I
would recommend reading this though any policy stuff doesn't
necessarily apply to this project they're generally good guidelines.

You may want to export the EDITOR environment variable so when you
make a commit, it prompts you for the commit message by opening your
favourite editor. Personally I have:

export EDITOR="nano -w"

...in my ~/.bashrc. Otherwise when committing you need to use the -m
"Message here" option though this is more difficult to use for
messages longer than 80 chars that need new lines and so on.

- Check out the soc repo:
svn co svn://svn.mplayerhq.hu/soc

- Make a directory for your work and commit it:
cd soc
mkdir mxf
svn add mxf
svn commit

- Add your code
cd mxf
cp /path/to/mxf.c .
svn add mxf.c
svn commit

Then just make changes, use svn diff to make diffs (or you can have a
git repository within your svn repository and use git-format-patch or
whatever) and commit.

Hope that helps,
Rob



More information about the FFmpeg-soc mailing list