Formatting fixes

This commit is contained in:
Jakob Borg
2015-05-28 15:11:12 +02:00
parent 040a7f1cf4
commit cbf0766e86
+7 -14
View File
@@ -77,7 +77,7 @@ Given a directory layout:
and an ``.stignore`` file with the contents: and an ``.stignore`` file with the contents:
.. code:: xml ::
!frobble !frobble
!quuz !quuz
@@ -89,7 +89,7 @@ and an ``.stignore`` file with the contents:
all files and directories called "foo", ending in a "2" or starting with all files and directories called "foo", ending in a "2" or starting with
"qu" will be ignored. The end result becomes "qu" will be ignored. The end result becomes
.. code:: xml ::
foo # ignored, matches "foo" foo # ignored, matches "foo"
foofoo # synced, does not match "foo" but would match "foo*" or "*foo" foofoo # synced, does not match "foo" but would match "foo*" or "*foo"
@@ -103,18 +103,11 @@ all files and directories called "foo", ending in a "2" or starting with
My Pictures/ # ignored, matched case insensitive "(?i)my pictures" pattern My Pictures/ # ignored, matched case insensitive "(?i)my pictures" pattern
Img15.PNG # ignored, due to parent being ignored Img15.PNG # ignored, due to parent being ignored
.. raw:: html .. note::
Please note that directory patterns ending with a slash
<p class="message warning"> ``some/directory/`` matches the content of the directory, but not the
directory itself. If you want the pattern to match the director and it's
Please note that directory patterns ending with a slash content, make sure it does not have a ``/`` at the end of the pattern.
``some/directory/`` matches the content of the directory, but not the
directory itself. If you want the pattern to match the director and it's
content, make sure it does not have a ``/`` at the end of the pattern.
.. raw:: html
</p>
Effects on "In Sync" Status Effects on "In Sync" Status
--------------------------- ---------------------------