Category: GIT Tutorial

What is Git – Why Git Came into Existence?

We all know “Necessity is the mother of all inventions”. And similarly Git was also invented to fulfill certain necessities that the developers faced before Git. So, let us take a step back to learn all about Version Control Systems (VCS) and how Git came into existence. Version Control is the management of changes to […]

Difference Between Bitbucket and GitHub

Today, we are discussing the Difference Between Bitbucket and GitHub? Before this lets understand what is Bitbucket and GitHub. Bitbucket: Bitbucket is the repository management tool that is specially built for expert teams and professionals. It is also called as Git repository management software and is a central hub for handling all the Git repository. […]

What is GitHub? It’s Use ?

GitHub is a Git repository hosting service. GitHub also facilitates with many of its features, such as access control and collaboration. It provides a Web-based graphical interface. GitHub is an American company. It hosts source code of your project in the form of different programming languages and keeps track of the various changes made by […]

Difference Between Git and SVN

Today, we are discussing the Difference Between Git and SVN? Before this lets understand what is Git and SVN. GIT: Git is a DevOps tool used for source code management. It is one of the most prominent version control systems (VCS) today that is widely used to handle small and large projects efficiently. It helps […]

Difference Between Git and GitHub?

Today, we are discussing the Difference Between Git and GitHub? Before this lets understand what is Git and GitHub. GIT: Git is a DevOps tool used for source code management. It is one of the most prominent version control systems (VCS) today that is widely used to handle small and large projects efficiently. It helps […]

Git Cheat Sheet

In this post, we are discussing Git Cheat Sheet or cheat code or shortcuts which can be really useful in day-to-day life or for interview preparation. Git commands are divided as follows.   1. Git configuration Git config: Get and set configuration variables that control all facets of how Git looks and operates. Set the […]

Git log Command

The advantage of a version control system is that it records changes. These records allow us to retrieve the data like commits, figuring out bugs, updates. But, all of this history will be useless if we cannot navigate it. At this point, we need the git log command. Git log is a utility tool to […]

Git Rm Command

In Git, the term rm stands for remove. It is used to remove individual files or a collection of files. The key function of git rm is to remove tracked files from the Git index. Additionally, it can be used to remove files from both the working directory and staging index. The files being removed […]

Git Revert Command

In Git, the Git Revert command is used to revert some changes. The git revert command is used to apply revert operation. It is an undo type command. However, it is not a traditional undo alternative. It does not delete any data in this process; instead, it will create a new change with the opposite […]

Git Status Command

The Git Status command is used to display the state of the repository and staging area. It allows us to see the tracked, untracked files and changes. This command will not show any commit records or information. Mostly, it is used to display the state between Git Add and Git commit command. We can check whether […]