Chapter 6. Downloading
You may never need to clone (download) a copy of a repository at all. As we’ve seen in this book, you can use the GitHub web interface to view the state of a project, edit content, collaborate with your team, and set up and configure a repository. However, sometimes it’s necessary to clone a repository. In this chapter we look at why you might want to clone a repo and how you would do so using either GitHub for Mac or GitHub for Windows. If you’re running Linux, you’ll probably be better off just installing Git directly and learning the command-line interface for working with Git repositories, but that’s outside of the scope of this book.
Why Clone a Repository?
There are a number of reasons why you might decide to clone a repository. Some of the most common ones include the following:
- Creating a backup
- When you clone a repository, it creates a full copy of the project—including all branches, tags, and history—on your computer. Sometimes it’s worth cloning a repository and pulling the changes down regularly just to know that you have a full copy of the project safely on your machine.
- Editing in an IDE
- The web-based interface isn’t as powerful as editing in an IDE (Integrated Development Environment) or your favorite text editor, so if you’re editing content all day, you’re going to want to do that locally on your machine.
- Editing offline
- You can’t edit directly on GitHub unless you have an Internet connection, so if you want to be able to keep working ...
Get Introducing GitHub now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.