diff --git a/content/contributing/development.rst b/content/contributing/development.rst index a0b1235cd..80582e5d8 100644 --- a/content/contributing/development.rst +++ b/content/contributing/development.rst @@ -67,11 +67,11 @@ 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 '' $ 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 '' #. That's it! You are ready to :ref:`make your first contribution `. diff --git a/content/developer/tutorials.rst b/content/developer/tutorials.rst index 9ce9df9e6..47c8022e6 100644 --- a/content/developer/tutorials.rst +++ b/content/developer/tutorials.rst @@ -12,6 +12,7 @@ Tutorials tutorials/define_module_data tutorials/restrict_data_access tutorials/unit_tests + tutorials/git tutorials/pdf_reports tutorials/dashboards @@ -34,7 +35,6 @@ Tutorials .. card:: Restrict access to data :target: tutorials/restrict_data_access - :tag: Beginner Implement security measures to restrict access to sensitive data with the help of groups, access rights, and record rules. @@ -46,6 +46,13 @@ Tutorials Write effective unit tests in Python to ensure the resilience of your code and safeguard it against unexpected behaviors and regressions. + .. card:: Collaborate using git + :target: tutorials/git + :tag: Beginner + + Hands on git and github, the two softwares that are used by both Odoo employees and external + people to work together on the source code and this documentation. + .. card:: Build PDF reports :target: tutorials/pdf_reports diff --git a/content/developer/tutorials/git.rst b/content/developer/tutorials/git.rst new file mode 100644 index 000000000..fdda9c11e --- /dev/null +++ b/content/developer/tutorials/git.rst @@ -0,0 +1,3 @@ +===================== +Collaborate using git +=====================