File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff 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
7468At this point, you have a fully-functional Symfony2 project that's correctly
You can’t perform that action at this time.
0 commit comments