...

/

Connect to the Repository

Connect to the Repository

Connect to the GitHub Repository.

Cloning a repository

Git’s advantage as a distributed source control system is its ability to clone a copy of the repository locally. Having a local copy of the repository gives you complete autonomy.

Use the git clone command to clone the repository you created. The clone command requires the <GitHub clone URL>.

Clone the repository by following these steps:

  1. Click Clone or Download, then click the copy or clipboard button.
  1. Use the git clone command in the terminal, replace the <Github clone URL> with the repository’s URL.
Press + to interact
# Replace the <GitHub clone URL> with the repository's URL.
git clone <Github clone URL>
  1. Change into the repository’s directory using the command below:
Press + to interact
# Change into the ansible directory
cd ansible
  1. List all the contents of the directory and show hidden files using the command below for the bash shell:
Press + to interact
# List all the contents of the current directory
ls -a

You can use the following command for listing the contents in PowerShell:

Press + to interact
Get-ChildItem -Force

Notice the .git directory. The .git folder makes it a Git repository. It was added when you created the repository using GitHub’s web interface.

Tracking changes

Git does not automatically commit your changes. You are responsible for staging and committing the changes. Git is aware of the changes, but you have to tell it which changes it should care about. ...