Junior — Middle
How is repository cloning performed using command line in Git system?
sobes.tech AI
Answer from AI
To clone a repository in Git, the command used is:
git clone <repository_URL>
For example:
git clone https://github.com/user/repository.git
This command will create a local copy of the remote repository in the current directory.