@@ -53,20 +53,20 @@ First, download and get your Symfony project running by following the
5353Once you have your new project directory and things are working, follow along
5454with these steps:
5555
56- 1 . Checkout the Subversion repository that will host this project. Suppose
56+ # . Checkout the Subversion repository that will host this project. Suppose
5757 it is hosted on `Google code `_ and called ``myproject ``:
5858
5959 .. code-block :: bash
6060
6161 $ svn checkout http://myproject.googlecode.com/svn/trunk myproject
6262
63- 2 . Copy the Symfony project files in the Subversion folder:
63+ # . Copy the Symfony project files in the Subversion folder:
6464
6565 .. code-block :: bash
6666
6767 $ mv Symfony/* myproject/
6868
69- 3 . Now, set the ignore rules. Not everything *should * be stored in your Subversion
69+ # . Now, set the ignore rules. Not everything *should * be stored in your Subversion
7070 repository. Some files (like the cache) are generated and others (like
7171 the database configuration) are meant to be customized on each machine.
7272 This makes use of the ``svn:ignore `` property, so that specific files can
@@ -87,21 +87,21 @@ with these steps:
8787
8888 $ svn ci -m " commit basic Symfony ignore list (vendor, app/bootstrap*, app/config/parameters.yml, app/cache/*, app/logs/*, web/bundles)"
8989
90- 4 . The rest of the files can now be added and committed to the project:
90+ # . The rest of the files can now be added and committed to the project:
9191
9292 .. code-block :: bash
9393
9494 $ svn add --force .
9595 $ svn ci -m " add basic Symfony Standard 2.X.Y"
9696
97- 5 . Copy ``app/config/parameters.yml `` to ``app/config/parameters.yml.dist ``.
97+ # . Copy ``app/config/parameters.yml `` to ``app/config/parameters.yml.dist ``.
9898 The ``parameters.yml `` file is ignored by svn (see above) so that
9999 machine-specific settings like database passwords aren't committed. By
100100 creating the ``parameters.yml.dist `` file, new developers can quickly clone
101101 the project, copy this file to ``parameters.yml ``, customize it, and start
102102 developing.
103103
104- 6 . Finally, download all of the third-party vendor libraries by
104+ # . Finally, download all of the third-party vendor libraries by
105105 executing Composer. For details, see :ref: `installation-updating-vendors `.
106106
107107.. tip ::
0 commit comments