Table of Contents :
Git is a distributed version control system that allows developers to track changes on their codebase and collaborate with other developers. It provides a way to manage and track different versions of a project, making it easier to revert to previous versions if necessary.
Github is a web-based platform that provides hosting for Git repositories, along with additional features such as issue tracking, pull requests, and code reviews. It also enables collaboration between developers by allowing them to work on the same codebase together, using features such as branches and forks.
git config
is a command used to configure and manage Git settings on your computer. Git is a version control system commonly used for tracking changes in source code during software development. The git config
command allows you to set, get, and list configuration variables for Git. These configuration variables can be set globally, per user, or per project/repository.$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"