Day7 : Basics of Git and GitHub

Git and GitHub #90daysofdevops

·

2 min read

1.What is Git?

Git is a version control system for tracking changes in files and coordinating the work of multiple people on those files.

It is primarily used for source-code management, but it can be used to keep track of changes in any set of files (for example, simple text files).

It is an open-source, distributed version control tool created by the developers working on Linux operating system in the year 2005.

2.What is GitHub?

GitHub is a Git remote repository hosting service that provides a web-based graphical interface.

It boasts of having the world’s largest coding community.

Putting a code or a project into GitHub helps to get widespread exposure. This is how open-source projects are well-known nowadays and developers can contribute to these projects from any part of the world.

Programmers can put source codes written in any programming language and use the command-line interface, Git, to make and keep track of any changes.

GitHub is maintained by Microsoft.

3.Git vs GitHub:

Git and GitHub are not the same thing.

You do not need GitHub to use git, but there is no meaning in using GitHub without using git.

Git is installed and maintained on your local system but GitHub is exclusively cloud-based.

Git is focused on version control and code sharing. GitHub is focused on centralized source code hosting.

If this post was helpful, please follow and click the 💚 button below to show your support.

_ Thank you for reading!

_Sudipa