Managing remote repositories
Remote repositories are copies of your project files that are hosted over a network, including the internet. Working in a development team involves managing these remote repositories and pushing and pulling data to and from them when you need to share your work.
You will need an account on GitHub (or another Git host). If you do not have an account, then you can join and sign up at the following link:
More Information
You can learn more about signing up for a GitHub account at the following link: https://docs.github.com/en/get-started/quickstart/creating-an-account-on-github.
You can list your configured remote repositories using git remote -v
.
For example, if you have cloned the GitHub repository for this book, then in the folder you cloned it to, you could issue the git remote -v
command, and you would see the following output:
origin https://github.com/markjprice/tools-skills-net8.git...