Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Doc/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://discuss.python.org/c/documentation>`_.


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.
26 changes: 26 additions & 0 deletions Doc/using/unix.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Loading