Skip to content

Remove git project setup #8779

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

Merged
merged 2 commits into from
Nov 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions _build/redirection_map
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,10 @@
/cookbook/web_services/php_soap_extension /controller/soap_web_service
/cookbook/workflow/homestead /setup/homestead
/cookbook/workflow/index /setup
/cookbook/workflow/new_project_git /setup/new_project_git
/cookbook/workflow/new_project_svn /setup/new_project_git
/setup/new_project_svn /setup/new_project_git
/cookbook/workflow/new_project_git /setup
/cookbook/workflow/new_project_svn /setup
/setup/new_project_git /setup
/setup/new_project_svn /setup
/components/asset/index /components/asset
/components/asset/introduction /components/asset
/components/browser_kit/index /components/browser_kit
Expand Down
2 changes: 2 additions & 0 deletions page_creation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ You can now add your route directly *above* the controller:
That's it! The page - ``http://localhost:8000/lucky/number`` will work exactly
like before! Annotations are the recommended way to configure routes.

.. _flex-quick-intro:

Auto-Installing Recipes with Symfony Flex
-----------------------------------------

Expand Down
17 changes: 16 additions & 1 deletion setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,22 @@ by pressing ``Ctrl+C`` from your terminal.
You should **NEVER** listen to all interfaces on a computer that is
directly accessible from the Internet.

Storing your Project in git
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Managing your project with Git ?

---------------------------

Storing your project in git is easy! Just initialize you repository, add everything
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to keep the original references to GitHub and Bitbucket. "Git" is too abstract and it will help us when someone looks for "symfony github", etc.

Managing your project with `git`_ and storing it on services like
`GitHub`_ or `Bitbucket`_ is easy! ...

.. _`GitHub`: https://github.com/
.. _`Bitbucket`: https://bitbucket.org/

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 <flex-quick-intro>` will add more lines to that
file when needed.

Troubleshooting: The Requirements Checker
-----------------------------------------

Expand Down Expand Up @@ -167,7 +183,6 @@ Go Deeper with Setup
:glob:

setup/homestead
setup/new_project_git
setup/built_in_web_server
setup/web_server_configuration
setup/composer
Expand Down
96 changes: 0 additions & 96 deletions setup/new_project_git.rst

This file was deleted.