This repository serves as a learning playground for exploring Git and GitHub. It contains exercises, sample projects, and documentation to delve into version control, branching, merging, and collaborative project workflows using Git.
- In the GitHub, there is a green button named: Code. Click on it.
- You you can clone your repository in three methods:
- HTTPS
- SSH
- GitHub CLI
- Copy the HTTPS link from GitHub.
- In your terminal, navigate to the folder where you want to store your project.
- Give the command:
cd ~
. This command will take you to the root directory. - If you want to clone the project into Documents/learning, then, give the command:
cd Documents/learning
- Give the command:
- Then in the terminal, give the command:
git clone <paste the HTTPS link copied in step 1>