From 6c1ec834685cfd3338b85c1f2b2960c259d4b946 Mon Sep 17 00:00:00 2001 From: Sarathrajan411 <146974565+Sarathrajan411@users.noreply.github.com> Date: Mon, 22 Dec 2025 02:04:54 +0530 Subject: [PATCH] Improve git clone documentation --- content/git/concepts/clone/clone.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/git/concepts/clone/clone.md b/content/git/concepts/clone/clone.md index a9b2d422d01..3551ab8ee21 100644 --- a/content/git/concepts/clone/clone.md +++ b/content/git/concepts/clone/clone.md @@ -38,4 +38,8 @@ $ git clone https://github.com/Codecademy/docs.git remote: Total 21512 (delta 2233), reused 1727 (delta 1466), pack-reused 17995 Receiving objects: 100% (21512/21512), 3.48 MiB | 9.56 MiB/s, done. Resolving deltas: 100% (10600/10600), done. + + ## Simple Explanation +The `git clone` command is used to copy a remote Git repository to your local machine so you can work on the project locally. + ```