[IMP] tutorials/getting_started: rework the environment setup guide

This commit replaces a big chunk of the instructions relative to the
environment setup with a reference to the equivalent steps listed in the
contribution guide. It also moves the content of the "Create your first
PR" section from chapter 16 to chapter 2, as readers were struggling
with the Git configuration required to push their work to GitHub as they
progressed through the tutorial.

closes odoo/documentation#4413

X-original-commit: 26e12696c1
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
Antoine Vandevenne (anv)
2023-05-09 16:01:35 +00:00
parent bf294f37cc
commit fd933208d3
12 changed files with 105 additions and 325 deletions

View File

@@ -67,16 +67,15 @@ and then push them to GitHub. Skip this section and go to
$ cd /CommunityPath
$ git remote add dev git@github.com:odoo-dev/odoo.git
$ git remote set-url --push origin no_push
$ git remote set-url --push origin you_should_not_push_on_this_repository
$ cd /EnterprisePath
$ git remote add dev git@github.com:odoo-dev/enterprise.git
$ git remote set-url --push origin no_push
$ git remote set-url --push origin you_should_not_push_on_this_repository
#. That's it! You are ready to :ref:`make your first contribution
<contributing/development/first-contribution>`.
.. _contributing/development/first-contribution:
Make your first contribution