[Bf-committers] Re: Scons linking errors & C++?

Chris Want bf-committers@blender.org
Tue, 02 Mar 2004 16:17:55 -0700


> Unfortunately I don't belong to that group so just to
> make sure (I am not a programmer, have not worked with
> cvs or with others ever before, and besides am the
> REALLY insecure type, I just want to make sure I do
> the right thing), what is the proper procedure to
> commit? Do I remove SConstruct before committing, or
> like Todd suggested, can I commit or create patches
> from /blender/source instead of /blender?

cvs -z3 commit file1 file2 file3 ...

That will ensure that you commit only
the files you want to commit. Any of
the files may be replaced by a
directory name , e.g., if you know that
everything you want to commit is in
blender/source (and subdirectories) do

cvs -z3 commit blender/source

Always do 'cvs -z3 update -Pd' before
committing.

If you are worried that something bad
might sneak through, review your patch
before committing with

cvs -z3 diff file1 file2 file3 ... | less

Chris