What I Have Learned So Far
-
What is GitHub?
GitHub is a web-based platform for version control and collaboration that allows developers to store, manage, and track changes in their projects using Git.
-
What is Git?
Git is a distributed version control system that helps developers track changes in their code, collaborate with others, and manage project history.
-
What is GitHub Desktop?
GitHub Desktop is a graphical user interface application that makes it easy to interact with Git and GitHub without using the command line.
-
How to Create a GitHub Account
To create a GitHub account easily, go to github.com, click on "Sign up", and follow the instructions to register.
-
What is a Repository?
A repository (or "repo") is a storage space where your project files and revision history are kept.
-
What is a Commit?
A commit is a snapshot of your repository at a specific point in time. It saves changes you've made to your files.
-
How to Host on GitHub
You can host your code or website on GitHub by pushing your project to a repository. For web projects, GitHub Pages can be used to publish your site live.