From 1aee1b52173a8ac3723cebef0a78cf98d34e6fae Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Sun, 17 Dec 2017 11:49:25 +0100 Subject: [PATCH] Mention that new Symfony projects already contain a Git repository --- setup.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.rst b/setup.rst index b2d0380abb4..73d020da801 100644 --- a/setup.rst +++ b/setup.rst @@ -76,18 +76,18 @@ by pressing ``Ctrl+C`` from your terminal. Storing your Project in git --------------------------- -Storing your project in git is easy! Just initialize you repository, add everything -and commit: +Storing your project in services like GitHub, GitLab and Bitbucket is easy! New +Symfony projects include an empty Git repository, so you can add everything and +commit: .. code-block:: terminal - $ git init $ git add . $ git commit -m "Initial commit" Your project already has a sensible ``.gitignore`` file. And as you install more -packages, a system called :ref:`Flex ` will add more lines to that -file when needed. +packages, a system called :ref:`Flex ` will add more lines to +that file when needed. Troubleshooting: The Requirements Checker -----------------------------------------