diff --git a/docs/pwg/advanced-negotiation.xml b/docs/pwg/advanced-negotiation.xml
index 76ec222d0f..a1b9b4c082 100644
--- a/docs/pwg/advanced-negotiation.xml
+++ b/docs/pwg/advanced-negotiation.xml
@@ -432,7 +432,7 @@ gst_my_filter_setcaps (GstPad * pad, GstCaps * caps)
Using all the knowledge you've acquired by reading this chapter, you
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.
diff --git a/docs/pwg/building-boiler.xml b/docs/pwg/building-boiler.xml
index 8092c86604..57baeda44b 100644
--- a/docs/pwg/building-boiler.xml
+++ b/docs/pwg/building-boiler.xml
@@ -26,37 +26,27 @@
The first step is to check out a copy of the
- gst-template CVS module to get an important tool and
+ gst-template git module to get an important tool and
the source code template for a basic &GStreamer; plugin. To check out the
gst-template module, make sure you are connected to
the internet, and type the following commands at a command console:
-shell $ cvs -d:pserver:anoncvs@cvs.freedesktop.org/cvs/gstreamer login
-Logging in to :pserver:anoncvs@cvs.freedesktop.org:/cvs/gstreamer
-CVS password: [ENTER]
-
-shell $ cvs -z3 -d:pserver:anoncvs@cvs.freedesktop.org:/cvs/gstreamer co gst-template
-U gst-template/README
-U gst-template/gst-app/AUTHORS
-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
-...
+shell $ git clone git://anongit.freedesktop.org/gstreamer/gst-template.git
+Initialized empty Git repository in /some/path/gst-template/.git/
+remote: Counting objects: 373, done.
+remote: Compressing objects: 100% (114/114), done.
+remote: Total 373 (delta 240), reused 373 (delta 240)
+Receiving objects: 100% (373/373), 75.16 KiB | 78 KiB/s, done.
+Resolving deltas: 100% (240/240), done.
- After the first command, you will have to press ENTER to
- log in to the CVS server. The second command will check out a series of
- files and directories into ./gst-template. The template you will be
- using is in ./gst-template/gst-plugin/ directory. You
- should look over the files in that directory to get a general idea of the
- structure of a source tree for a plugin.
+ This command will check out a series of files and directories into
+ gst-template. The template you
+ will be using is in the
+ gst-template/gst-plugin/
+ directory. You should look over the files in that directory to get a
+ general idea of the structure of a source tree for a plugin.
@@ -118,8 +108,7 @@ U gst-template/gst-app/src/Makefile.am
It is recommended that you create a copy of the gst-plugin
- directory before continuing. Do not copy the CVS directories though.
+ directory before continuing.