Repo Hosting: GitHub
GitHub is almost a given requirement now in any software development job. Let's learn more about it in this lesson.
We'll cover the following...
With Git, you can restore files to any previously committed state, even if they are deleted or modified. However, if your machine gets stolen, crashes, or is lost, you will still lose your project, even with Git.
Also, you still can’t truly collaborate. For that, we’ll look at how you can host your repo on another server with GitHub.
What is repo hosting?
As discussed in the previous lesson, Git can be used to version control your project on your local machine; however, it cannot be used to collaborate with others and does not safeguard your project if you lose your machine.
So, to ensure that your project remains ...