Skip to content
Closed
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
20 changes: 20 additions & 0 deletions content/git/clone/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
Title: git clone
Description: The git clone command creates a copy of an existing Git repository.
Subjects:
- Git
Tags:
- command
- clone
---

## Definition
The `git clone` command is used to create a local copy of a remote repository.
It downloads all files, branches, and commit history.

---

## Syntax
```bash
git clone <repository_url>