From the course: Programming Foundations: Version Control with Git

Unlock the full course today

Join today to access over 24,400 courses taught by industry experts.

Hosting services

Hosting services

- In a previous lesson, we talked about Git being a distributed version control system, meaning that a centralized remote repository is not required. But if you're anything like me and worry about losing your work, I would recommend using a remote repository to have a backup copy or to share files when working with others. Also, I tend to switch between my laptop and desktop computer all the time, so saving files remotely allows me to work from any workstation. If you want just a backup of your files, you can use a cloud service like Google Drive, Dropbox, or Sync. However, these services only offer files syncing, but there are also hosting services specifically for version control systems. These services provide additional features that go beyond file syncing, such as Wikis, issue tracking, hosting private or public repos, and a variety of collaboration tools. The features may vary among different services. Some popular options are GitLab, GitHub, and Bitbucket. When you're starting…

Contents