Skip to content

Commit 011e0f0

Browse files
committed
Update .gitignore example
As confirmed by WouterJ on Stack Overflow [1], the example .gitignore file [2] is not up-to-date. This commit updates the documentation to reflect the current state of the .gitignore file that is included in the Symfony Standard Edition distribution [3]. [1] http://stackoverflow.com/q/23437768/1001110 [2] http://symfony.com/doc/current/cookbook/workflow/new_project_git.html#initial-project-setup [3] https://github.com/symfony/symfony-standard/blob/master/.gitignore
1 parent 127beed commit 011e0f0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

cookbook/workflow/new_project_git.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,16 @@ git repository:
3232
.. code-block:: text
3333
3434
/web/bundles/
35-
/app/bootstrap*
35+
/app/bootstrap.php.cache
3636
/app/cache/*
37+
/app/config/parameters.yml
3738
/app/logs/*
39+
!app/cache/.gitkeep
40+
!app/logs/.gitkeep
41+
/build/
3842
/vendor/
39-
/app/config/parameters.yml
43+
/bin/
44+
/composer.phar
4045
4146
.. tip::
4247

0 commit comments

Comments
 (0)