Skip to content

Commit 85fc107

Browse files
committed
minor #8779 Remove git project setup (weaverryan)
This PR was squashed before being merged into the 4.0 branch (closes #8779). Discussion ---------- Remove git project setup Commits ------- 770932f removing bad link b6cdb0a removing a now-tiny article about git setup
2 parents b5445eb + 770932f commit 85fc107

File tree

4 files changed

+22
-100
lines changed

4 files changed

+22
-100
lines changed

_build/redirection_map

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,10 @@
287287
/cookbook/web_services/php_soap_extension /controller/soap_web_service
288288
/cookbook/workflow/homestead /setup/homestead
289289
/cookbook/workflow/index /setup
290-
/cookbook/workflow/new_project_git /setup/new_project_git
291-
/cookbook/workflow/new_project_svn /setup/new_project_git
292-
/setup/new_project_svn /setup/new_project_git
290+
/cookbook/workflow/new_project_git /setup
291+
/cookbook/workflow/new_project_svn /setup
292+
/setup/new_project_git /setup
293+
/setup/new_project_svn /setup
293294
/components/asset/index /components/asset
294295
/components/asset/introduction /components/asset
295296
/components/browser_kit/index /components/browser_kit

page_creation.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ You can now add your route directly *above* the controller:
122122
That's it! The page - ``http://localhost:8000/lucky/number`` will work exactly
123123
like before! Annotations are the recommended way to configure routes.
124124

125+
.. _flex-quick-intro:
126+
125127
Auto-Installing Recipes with Symfony Flex
126128
-----------------------------------------
127129

setup.rst

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,22 @@ by pressing ``Ctrl+C`` from your terminal.
7373
You should **NEVER** listen to all interfaces on a computer that is
7474
directly accessible from the Internet.
7575

76+
Storing your Project in git
77+
---------------------------
78+
79+
Storing your project in git is easy! Just initialize you repository, add everything
80+
and commit:
81+
82+
.. code-block:: terminal
83+
84+
$ git init
85+
$ git add .
86+
$ git commit -m "Initial commit"
87+
88+
Your project already has a sensible ``.gitignore`` file. And as you install more
89+
packages, a system called :ref:`Flex <flex-quick-intro>` will add more lines to that
90+
file when needed.
91+
7692
Troubleshooting: The Requirements Checker
7793
-----------------------------------------
7894

@@ -167,7 +183,6 @@ Go Deeper with Setup
167183
:glob:
168184

169185
setup/homestead
170-
setup/new_project_git
171186
setup/built_in_web_server
172187
setup/web_server_configuration
173188
setup/composer

setup/new_project_git.rst

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)