Add SSL varification related examples

This change adds the SSL verification related examples to the
readme file.

Change-Id: I30f94f214222cfa37e462755c02de6585d6cc61a
diff --git a/README.rst b/README.rst
index 30a03d9..838165b 100644
--- a/README.rst
+++ b/README.rst
@@ -28,6 +28,19 @@
             name: jdoe
             email: j@doe.com
 
+GIT with user and SSL setup
+
+.. code-block:: yaml
+
+    git:
+      client:
+        disable_ssl_verification: True
+        enabled: true
+        user:
+        - user:
+            name: jdoe
+            email: j@doe.com
+
 Reclass with GIT with user setup
 
 .. code-block:: yaml
@@ -38,6 +51,18 @@
         user:
         - user: ${linux:system:user:jdoe}
 
+Reclass with GIT with user and SSL setup
+
+.. code-block:: yaml
+
+    git:
+      client:
+        disable_ssl_verification: True
+        enabled: true
+        user:
+        - user: ${linux:system:user:jdoe}
+
+
 Read more
 =========