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:
44
44
in which case, you can find more information here: `Github .gitignore `_
45
45
This way you can exclude files/folders often used by your IDE for all of your projects.
46
46
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:
54
48
55
49
.. code-block :: bash
56
50
57
51
$ git init
58
52
59
- 6 . Add all of the initial files to Git:
53
+ 5 . Add all of the initial files to Git:
60
54
61
55
.. code-block :: bash
62
56
63
57
$ git add .
64
58
65
- 7 . Create an initial commit with your started project:
59
+ 6 . Create an initial commit with your started project:
66
60
67
61
.. code-block :: bash
68
62
69
63
$ git commit -m " Initial commit"
70
64
71
- 8 . Finally, download all of the third-party vendor libraries by
65
+ 7 . Finally, download all of the third-party vendor libraries by
72
66
executing Composer. For details, see :ref: `installation-updating-vendors `.
73
67
74
68
At this point, you have a fully-functional Symfony2 project that's correctly
You can’t perform that action at this time.
0 commit comments