diff --git a/Doc/README.rst b/Doc/README.rst index 2d1148753e0c6b..b3936cedc135c4 100644 --- a/Doc/README.rst +++ b/Doc/README.rst @@ -135,3 +135,29 @@ Bugs in the toolset should be reported to the tools themselves. To help with the documentation, or report any problems, please leave a message on `discuss.python.org `_. + + +Cloning the Repository +====================== + +To clone the `python/cpython` repository, you can use the GitHub CLI. Follow the steps below: + +Prerequisites +------------- + +Before you can clone the repository, make sure you have the following prerequisites: + +1. **GitHub CLI**: You need to have the GitHub CLI installed on your machine. If you don't have it installed, you can download and install it from the [GitHub CLI website](https://cli.github.com/). + +2. **Git**: Ensure that you have Git installed on your machine. You can download and install Git from the [Git website](https://git-scm.com/). + +Cloning the Repository +---------------------- + +Once you have the prerequisites installed, you can clone the repository using the following command: + +```sh +gh repo clone python/cpython +``` + +This command will clone the `python/cpython` repository to your local machine, including all files and directories. diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst index a2bcdab09a9282..9131a2d4cbb959 100644 --- a/Doc/using/unix.rst +++ b/Doc/using/unix.rst @@ -180,3 +180,29 @@ Custom OpenSSL Patch releases of OpenSSL have a backwards compatible ABI. You don't need to recompile Python to update OpenSSL. It's sufficient to replace the custom OpenSSL installation with a newer version. + + +Cloning the Repository +====================== + +To clone the `python/cpython` repository, you can use the GitHub CLI. Follow the steps below: + +Prerequisites +------------- + +Before you can clone the repository, make sure you have the following prerequisites: + +1. **GitHub CLI**: You need to have the GitHub CLI installed on your machine. If you don't have it installed, you can download and install it from the [GitHub CLI website](https://cli.github.com/). + +2. **Git**: Ensure that you have Git installed on your machine. You can download and install Git from the [Git website](https://git-scm.com/). + +Cloning the Repository +---------------------- + +Once you have the prerequisites installed, you can clone the repository using the following command: + +```sh +gh repo clone python/cpython +``` + +This command will clone the `python/cpython` repository to your local machine, including all files and directories. diff --git a/README.md b/README.md new file mode 100644 index 00000000000000..0b1837660f6ef4 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Cloning the Repository + +To clone the `python/cpython` repository, you can use the GitHub CLI. Follow the steps below: + +## Prerequisites + +Before you can clone the repository, make sure you have the following prerequisites: + +1. **GitHub CLI**: You need to have the GitHub CLI installed on your machine. If you don't have it installed, you can download and install it from the [GitHub CLI website](https://cli.github.com/). + +2. **Git**: Ensure that you have Git installed on your machine. You can download and install Git from the [Git website](https://git-scm.com/). + +## Cloning the Repository + +Once you have the prerequisites installed, you can clone the repository using the following command: + +```sh +gh repo clone python/cpython +``` + +This command will clone the `python/cpython` repository to your local machine, including all files and directories.