Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 011e0f0

Browse filesBrowse 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
Copy full SHA for 011e0f0

File tree

Expand file treeCollapse file tree

1 file changed

+7
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+7
-2
lines changed

‎cookbook/workflow/new_project_git.rst

Copy file name to clipboardExpand all lines: cookbook/workflow/new_project_git.rst
+7-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.