-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Update 'How to Create and store a Symfony2 Project in Git' #3827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
011e0f0
34d61eb
6a19628
311f14b
32cee81
083c1f5
d9f72f9
6fd5e52
1baf7e0
3f3d886
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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:: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. although it is not your mistake, could you please indent this tip to be on the same level as the rest of the list item? Then we can switch using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will do! |
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this is the case add the SymfonyRequirements class as sometimes is good to remove it or ignore it, same with config and check scripts 👶
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see why you put that comment on this line. Besides that, I'm missing what you want to say. The files listed here are things that generally should be ignored, ignoring config/check scripts is something that doesn't belong in that list imo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is more for more slim approaches, these files change anyway depending on the OS are are files that can be cleaned up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR only changes the documentation to reflect the actual
.gitignore
. If you'd want to propose a change to the file, you should probably do it in the Symfony Standard Edition repository, not here.