Skip to content

Commit a21fb26

Browse files
committed
bug symfony#3559 Remove reference to copying parameters.yml from Git cookbook (pwaring)
This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes symfony#3559). Discussion ---------- Remove reference to copying parameters.yml from Git cookbook This file is included in standard distribution so no longer needs to be copied. Commits ------- b392af5 Remove reference to copying parameters.yml to parameters.yml.dist as this file is now included in standard distribution, and renumber all following steps.
2 parents 0029408 + 8c6e205 commit a21fb26

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

cookbook/workflow/new_project_git.rst

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,25 @@ git repository:
4444
in which case, you can find more information here: `Github .gitignore`_
4545
This way you can exclude files/folders often used by your IDE for all of your projects.
4646

47-
4. Copy ``app/config/parameters.yml`` to ``app/config/parameters.yml.dist``.
48-
The ``parameters.yml`` file is ignored by Git (see above) so that machine-specific
49-
settings like database passwords aren't committed. By creating the ``parameters.yml.dist``
50-
file, new developers can quickly clone the project, copy this file to
51-
``parameters.yml``, customize it, and start developing.
52-
53-
5. Initialize your Git repository:
47+
4. Initialize your Git repository:
5448

5549
.. code-block:: bash
5650
5751
$ git init
5852
59-
6. Add all of the initial files to Git:
53+
5. Add all of the initial files to Git:
6054

6155
.. code-block:: bash
6256
6357
$ git add .
6458
65-
7. Create an initial commit with your started project:
59+
6. Create an initial commit with your started project:
6660

6761
.. code-block:: bash
6862
6963
$ git commit -m "Initial commit"
7064
71-
8. Finally, download all of the third-party vendor libraries by
65+
7. Finally, download all of the third-party vendor libraries by
7266
executing Composer. For details, see :ref:`installation-updating-vendors`.
7367

7468
At this point, you have a fully-functional Symfony2 project that's correctly

0 commit comments

Comments
 (0)