diff --git a/guide/english/git/index.md b/guide/english/git/index.md
index bfae76579f..2c0b75ab14 100644
--- a/guide/english/git/index.md
+++ b/guide/english/git/index.md
@@ -113,6 +113,10 @@ Once Git is installed and configured on your computer, you need to initialize it
It's important that the Git directory is installed in the project root folder. Git can track files in subfolders, but it won't track files located in a parent folder relative to the Git directory.
+### Clone a Git Project
+You can also clone a project from github by using the command `git clone` followed by the link. An example of a link is `https://github.com/example/example.git`
+
+
### Get Help in Git
If you forget how any command works in Git, you can access Git help from the command line several ways:
```shell