Skip to content

Commit aa6c315

Browse files
committed
fixed markup
1 parent 6d6eedd commit aa6c315

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

cookbook/workflow/new_project_git.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ git repository:
2626
(e.g. next to the ``deps`` file) and paste the following into it. Files
2727
matching these patterns will be ignored by git:
2828

29-
.. code-block:: text
29+
.. code-block:: text
3030
3131
/web/bundles/
3232
/app/bootstrap*
@@ -43,26 +43,26 @@ git repository:
4343

4444
5. Initialize your git repository:
4545

46-
.. code-block:: bash
47-
46+
.. code-block:: bash
47+
4848
$ git init
4949
5050
6. Add all of the initial files to git:
5151

52-
.. code-block:: bash
53-
52+
.. code-block:: bash
53+
5454
$ git add .
5555
5656
7. Create an initial commit with your started project:
5757

58-
.. code-block:: bash
59-
58+
.. code-block:: bash
59+
6060
$ git commit -m "Initial commit"
6161
6262
8. Finally, download all of the third-party vendor libraries:
6363

64-
.. code-block:: bash
65-
64+
.. code-block:: bash
65+
6666
$ php bin/vendors install
6767
6868
At this point, you have a fully-functional Symfony2 project that's correctly
@@ -72,7 +72,7 @@ changes to your git repository.
7272
.. tip::
7373

7474
After execution of the command:
75-
75+
7676
.. code-block:: bash
7777
7878
$ php bin/vendors install

0 commit comments

Comments
 (0)