Understanding Git: A Comprehensive Guide to Version Control

what is git

Git is a distributed version control system that allows multiple developers to work on a project simultaneously … Read more

How to delete the remote TAG in git ?

We had some source code, to which after doing modifications and commit, we added a tag and … Read more

How to upload large files to git server / GitHub using git LFS ?

Git Large File Storage (LFS) is a Git extension designed for handling large files more efficiently. If … Read more

How to Solve – fatal: refusing to merge unrelated histories

Unrelated_History_in_Git

As we seen in our previous post, “Pushing your first git repository / project to Github” we … Read more

How to Configure Username, E-mail For First Time Git Setup ?

username email git

The first thing you should do when you install Git is, configure it to set your user … Read more

How to Create a Remote Branch in Git ?

The process to create a new branch a remote git starts with having this git on your … Read more

How to update Git to Latest Version in Linux ?

upgrade git version

In old versions of Git “–initial-branch” is not supported, but some of the most online git platforms … Read more

How to Generate Git Patch for Specific Commit Id ?

Git_Single_Patch

By default, “git format-patch COMMIT_ID” command, generates all the patches from most recent till the commit id … Read more

How to Create Your First Git Repository ?

First git repository

As we seen in our previous post, “Install Git On Ubuntu” we are now ready with basic … Read more

How To Install Git on Ubuntu ?

Install Git on Ubuntu

As we seen in our last post, “What is Git ?” , git works for local as … Read more