thisisnic commented on a change in pull request #11866: URL: https://github.com/apache/arrow/pull/11866#discussion_r764844002
########## File path: docs/source/developers/guide/step_by_step/set_up.rst ########## @@ -27,3 +27,100 @@ ****** Set up ****** + +Install and setup Git +===================== + +The Arrow project is developed using `Git <https://git-scm.com/>`_ +for version control which is easily available for all common +operating systems. + +You can follow the instructions to install Git from GitHub +where Arrow repository is hosted, following +`the quickstart instructions <https://docs.github.com/en/get-started/quickstart/set-up-git>`_. + +When Git is set up do not forget to configure your name and email + +.. code:: console + + $ git config --global user.name "Your Name" + $ git config --global user.email [email protected] + +and `authenticate with GitHub <https://docs.github.com/en/get-started/quickstart/set-up-git#next-steps-authenticating-with-github-from-git>`_ +as this will allow you to interact with GitHub without typing +a username and password each time you execute a git command. + +.. note:: + + This guide assumes you are comfortable working from the command line. + Some IDEs allow you to manage a git repository, but may implicitly run Review comment: ```suggestion Some IDEs allow you to manage a Git repository, but may implicitly run ``` ########## File path: docs/source/developers/guide/step_by_step/set_up.rst ########## @@ -27,3 +27,100 @@ ****** Set up ****** + +Install and setup Git Review comment: ```suggestion Install and set up Git ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
