Cloning a Git repository
💡Clone a repository into a new directory, this includes all versions of the repository and commits logs.

Hi, I'm Cristina Ramirez, I'm a computer engineer and software developer with more than 10 years of experience as backend developer, web application development, API REST services for mobile applications, system analysis and logic.
Programming languages: Ruby, PHP, C, C++, C#, CSS, JavaScript.
Frameworks: Ruby on Rails, PHP (Codeigniter, APPHP).
Experience of relational databases (Postgres, MySql, Oracle) and NoSQL databases (MongoDB, Neo4j).
I like innovation and teamwork.

1.- First, you must know that the origin is the remote repository name in the local computer, it is used to send and receive information from GitHub. Use git remote command to show it.
git remote origin

2.- In Github, you look for the clone button, you need to copy the url into the https tab, this is the option recommended by GitHub.

3.- Enter the url copy in git clone command, this command create a folder with the name of the repository and clone the content.
git clone https://github.com/delgadocris/ruby.git

4.- The repository has been successfully cloned with all its files.

5.- When you clone a repository, you clone the information of commit logs too.




