pwg: update for CVS-to-git migration

Fixes #573946.
This commit is contained in:
Tim-Philipp Müller 2009-03-04 10:46:15 +00:00
parent f0481cb717
commit 5fd1bf613c
2 changed files with 16 additions and 27 deletions

View file

@ -432,7 +432,7 @@ gst_my_filter_setcaps (GstPad * pad, GstCaps * caps)
<para> <para>
Using all the knowledge you've acquired by reading this chapter, you Using all the knowledge you've acquired by reading this chapter, you
should be able to write an element that does correct caps negotiation. should be able to write an element that does correct caps negotiation.
If in doubt, look at other elements of the same type in our CVS If in doubt, look at other elements of the same type in our git
repository to get an idea of how they do what you want to do. repository to get an idea of how they do what you want to do.
</para> </para>
</sect1> </sect1>

View file

@ -26,37 +26,27 @@
</para> </para>
<para> <para>
The first step is to check out a copy of the The first step is to check out a copy of the
<filename>gst-template</filename> CVS module to get an important tool and <filename>gst-template</filename> git module to get an important tool and
the source code template for a basic &GStreamer; plugin. To check out the the source code template for a basic &GStreamer; plugin. To check out the
<filename>gst-template</filename> module, make sure you are connected to <filename>gst-template</filename> module, make sure you are connected to
the internet, and type the following commands at a command console: the internet, and type the following commands at a command console:
</para> </para>
<screen> <screen>
<prompt>shell $ </prompt><userinput>cvs -d:pserver:anoncvs@cvs.freedesktop.org/cvs/gstreamer login</userinput> <prompt>shell $ </prompt><userinput>git clone git://anongit.freedesktop.org/gstreamer/gst-template.git</userinput>
Logging in to :pserver:anoncvs@cvs.freedesktop.org:/cvs/gstreamer Initialized empty Git repository in /some/path/gst-template/.git/
CVS password: <keycap>[ENTER]</keycap> remote: Counting objects: 373, done.
remote: Compressing objects: 100% (114/114), done.
<prompt>shell $ </prompt><userinput>cvs -z3 -d:pserver:anoncvs@cvs.freedesktop.org:/cvs/gstreamer co gst-template</userinput> remote: Total 373 (delta 240), reused 373 (delta 240)
U gst-template/README Receiving objects: 100% (373/373), 75.16 KiB | 78 KiB/s, done.
U gst-template/gst-app/AUTHORS Resolving deltas: 100% (240/240), done.
U gst-template/gst-app/ChangeLog
U gst-template/gst-app/Makefile.am
U gst-template/gst-app/NEWS
U gst-template/gst-app/README
U gst-template/gst-app/autogen.sh
U gst-template/gst-app/configure.ac
U gst-template/gst-app/src/Makefile.am
...
</screen> </screen>
<para> <para>
After the first command, you will have to press <keycap>ENTER</keycap> to This command will check out a series of files and directories into
log in to the CVS server. The second command will check out a series of <filename class="directory">gst-template</filename>. The template you
files and directories into <filename will be using is in the
class="directory">./gst-template</filename>. The template you will be <filename class="directory">gst-template/gst-plugin/</filename>
using is in <filename directory. You should look over the files in that directory to get a
class="directory">./gst-template/gst-plugin/</filename> directory. You general idea of the structure of a source tree for a plugin.
should look over the files in that directory to get a general idea of the
structure of a source tree for a plugin.
</para> </para>
</sect1> </sect1>
@ -118,8 +108,7 @@ U gst-template/gst-app/src/Makefile.am
<para> <para>
It is recommended that you create a copy of the <filename It is recommended that you create a copy of the <filename
class="directory">gst-plugin</filename> class="directory">gst-plugin</filename>
directory before continuing. Do not copy the <filename directory before continuing.
class="directory">CVS</filename> directories though.
</para> </para>
</note> </note>
</sect1> </sect1>