From 2f44ff860d89630783eb0bb39e2a4223ae740d38 Mon Sep 17 00:00:00 2001 From: Luka Kidric Date: Tue, 1 Jan 2019 18:20:48 +0100 Subject: [PATCH] added how to clone a repo (#28708) * added how to clone a repo * fix: changed git init to git clone --- guide/english/git/index.md | 4 ++++ 1 file changed, 4 insertions(+) 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