Skip to content

Commit

Permalink
Update .gitignore example
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nicwortel committed May 3, 2014
1 parent 127beed commit 011e0f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions cookbook/workflow/new_project_git.rst
Expand Up @@ -32,11 +32,16 @@ git repository:
.. code-block:: text
/web/bundles/
/app/bootstrap*
/app/bootstrap.php.cache
/app/cache/*
/app/config/parameters.yml
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
/build/
/vendor/
/app/config/parameters.yml
/bin/
/composer.phar
.. tip::

Expand Down

0 comments on commit 011e0f0

Please sign in to comment.