What is Git? Git Tutorial for Beginners

What is Git? Git Tutorial for Beginners

19 Mar 2024
Intermediate
3.38K Views
32 min read

Git Tutorial for Beginners: An Overview

Git is the most popular version control system available nowadays. The importance of Git is nowhere second to learning to write code. In this DevOps Tutorial, we will have a detailed look at What is Git?, its history, how to start Git for beginners, the important Git Commands etc. Enroll yourself in the azure devops certificationfrom ScholarHat and start your tech career right away.

Git and its brief history

Git was built by Linus Torvalds in 2005, the same person who developed Linux as well. It’s lead developer and maintainer is Junio Hamanosince then. Git development began in early 2005, when Linus and fellow Linux maintainers discontinued the use of the then source control management system (SCM), namely BitKeeper. The current Git Version is 2.27.

What is Git?

Version Control System for tracking changes in files.

  • Distributed Version Control
  • Coordination between multiple developers
  • Who made what changes and when
  • Revert back at any time
  • Local and Remote repos

Why Use Git?

There are several benefits of using Git. some of them are as follows:

  • Changes made to the codebase over time, can be tracked by the developers easily.
  • Enhanced collaboration allows developers to work in a team on the same codebase through centralized repository.
  • Git has features like branching and merging that allow the developers to work on independently without impacting the main codebase.
  • It maintains a detailed history of all the changes that were made to the codebase, including who made those changes and when.
  • Git is a distributed version control system, which makes it more flexible and portable.

Git Concepts

  • Keeps track of code histories
  • Takes snapshots of your files
  • You decide when to take a snapshot by making a ‘commit’
  • You can visit any snapshot at any given time
  • You can stage files before committing

Getting Started with Git

Getting started with Git is very easy nowadays; Git is available for all platforms (Linux, Windows, macOS).

Installation

  • Linux (Debian)
  • $ sudo apt-get install git (command)
  • Linux (Fedora)
  • $ sudo yum install git (command)
  • Mac
  • https://git-scm.com/download/mac
  • Windows
  • https://git-scm.com/download/win,(installer)

I have a Win 10 machine currently, which already has Git installed. Installation of Git comes with a Git terminal (Git Bash) and Git GUI (Image 1, Image2, Image3).

Image 1 – Git Bash & Git GUI

Image 2 – Git Bash

Image 3 – Git GUI

Git Bash and Git GUI can be opened directly from the search bar in Windows, or by right click on any directory. Right click on any directory will open the bash and GUI pointing to the directory’s path.

Git Version and Update to latest version

Let us see which version of Git we have and how can we update to the latest version.

git --version– gives the installed version of Git, the below snapshot (Image 4) shows the installed version as 2.21.0. he latest Git version available is 2.27.0, the command to update Git for Windows from the terminal is :- git update-git-for-windows. We can see from the below snapshots that update to latest version takes place after the update command (Image 4, Image 5).

Image 4 – git version and update

Image 5 – Download and installation to latest version

Now, since now we have the latest installation of Git in our system, let us learn some Git command and terminologies, and execute them.

Git Features

  1. Distributed Version Control- Git allows every developer to have a complete copy of the repository so they can easily work offline and independently as well.
  2. Branching and Merging- Branching means isolating small independent branches for new fixes and Merging attaches back those branches to the codebase. It facilitates the developers to easily make desired changes without impacting the main codebase.
  3. Fast Performance- Git allows its users to perform all the operations quickly, even on large repositories.
  4. Security- It provides with measures for authentication, access control and encryption which ensures high security of code repositories and collaboration between developers.
  5. History Tracking- It maintains a complete history of all the changes that were made to the codebase, which also include who made those changes and when, enabling easy auditing, debugging and reverting back to previous states.

Git Commands

git init

Let us open bash and first create a directory; we will add few files and then initialize the directory as a git repo.

cd d:- go to D drive

mkdir sample-app--> create a directory/folder named sample-app

cd sample-app--> go to sample-app

ls--> list out contents (currently no content, hence ls displays empty)

touch filenamecreates the file , We have created 3 files, namely – index.html, app.js, styles.css using the touch command, ls now displays the content of the directory

Let us initialize the directory sample-app as a git repo by using command git init.

git initcommand initializes a directory and creates a hidden .git folder, the default branch created is master.

git status

git statuscommand lets us see which changes have been staged, which haven’t, which changes are being tracked and so on. Currently we don’t have any file in the staging area, because we haven’t added any.

git add

Let us add files present in the sample-app directory to the staging area.

git add <filename>– git add index.html, index.html gets added to the staging area and git status command confirms it as shown below.

git add <filename>will add a single file to the staging area, we can use, git add *.extensionto add all the files of a certain extension. Let’s prove it. Create an index1.html file, execute git add *.html, and then execute git status to confirm whether all the html files have been added or not.

To add all the files of a directory irrespective of the extension, we can use

git add

git rm --cached <filename>

git rm --cached <filename> command is used to remove a file from the staging area, i.e. to unstage a file, let’s look at it in action.

We see in the above screenshot that we have unstaged app.js and it is no longer present with all the other files in the staging area.

git reset

git reset command will unstage all the files.

git commit

git commit command is used to save the staged files to the local repository. Let us make few changes in the files and then try to commit.

git commit command takes us to a vim editor internally in which we can provide our commit message by clicking on ‘i’ key and being in insert mode. Once we are done with our commit message, we can click Esc key to be out of insert mode and type ‘:wq’ to finally commit.

We can also use git commit –m ‘commit message’command to commit a change directly, this command will help us to not enter the vim editor.

git log

git log command lists all the commits to a certain branch in reverse chronological order

Let us change a file and commit it again to see the logs.

We have edited index.html àstaged the file using git add . àCommitted the file using git commit –m ‘Commit Message’. Now git log shows 2 commits, the latest one being on the top.

Now that we are comfortable with init, add , commit, reset, log commands, we need to ponder as to where does git store its local repository.

The answer is the hidden .git folder in the working directory.

We can find the done commits in the master file located at :

directory-name\.git\logs\refs\heads

In our case,

D:\sample-app\.git\logs\refs\heads\master

0000000000000000000000000000000000000000 757cd20ba48ea779be725844b7ec22d6dfc60577 Anurag Sinha <anurag.sinha@gmail.com> 1594459548 +0530 commit (initial): Initial commit

757cd20ba48ea779be725844b7ec22d6dfc60577 e3ccb3a886d2486f8afab1ca2e50b2569386bc5e Anurag Sinha <anurag.sinha@gmail.com> 1594461492 +0530 commit: Second commit - edited index.html

.gitignore file

.gitignore is not a command; rather it is a file, in which we can include those directories and files, which we don’t want to commit.

Let’s create a .gitignore file in our directory, this file will be visible once we have extensions of the files also selected, else we will see a 0 KB file with no name.

Let’s create a log.txt file and add it to .gitignore.

Let’s do some changes in log.txt and see whether we can find this file in the changed ones and ultimately add and commit.

Once we do a git add .only the .gitignore file gets added to the stage and not log.txt, because it has been ignored. .gitignore is very helpful, often we do not want few files/folders to not to be staged, ex: node_modules in an angular or react app. We can add regex as well in the .gitignore file to exclude certain types of files and folders.

git branch

git branch command is used to create different branches. Often developers work on their own branches and merge their changes in the master branch. Let’s create a diff branch.

git branch <branchname> creates a branch but we need to checkout that branch and then work.

git checkout <branchname> helps us to switch to the said branch, we have named the branch as registration assuming we will create a registration module in this branch, let’s add few files in it. I have created 2 files, namely, registration.html and registration.js

Let’s edit these 2 files.

Let’s execute gitadd .command to stage the changed files in registration branch.

`

Let us commit the staged files via git commit –m ‘commit message’ command

These 2 files are committed in registration branch and hence if we checkout the master branch, we won’t find these 2 files, which is quite self-explanatory.

Once we checkout to master and do a ls command, we do not find registration.html and registration.js

git merge

git merge command is used to merge 2 branches, in our case we have 2 branches master and registration with different sets of files. We can merge registration to master, let’s do it.

git push

Till now, we have been working with local repository; now it’s time to push our changes to a remote repository, where in any one else too can get our changes. Let us go to github.com and create an empty git repository; afterwards we would push our local changes to the remote one.

Provide a valid repository name, a related description, make the repo public. I already have .gitignore file and hence I have not added it over here.

The remote repository ‘git-tutorial’ gets created. We will now push our existing local repo from git bash. We execute the below command to add a remote named origin (generally remote is named as origin). git remote add origin "https://github.com/anurag1302/git-tutorial.git"

Currently a remote named origin has been added, now we will push our local master branch to the remote.

git push –u origin master-> pushes the local master branch to the remote master branch and sets up a tracking too. A simple git pushcommand too will push the local contents, but the tracking won’t be setup.

Once the push command is successful, we will see that the remote repo contains our code.

Let us create a ReadMe.md file in the local repo, edit it and push it to the remote origin.

We added the ReadMe.md file, edited it, committed it to local repo and then pushed it to the remote origin.

We see only one branch in remote origin, i.e. master. Let us push our registration branch too.

git checkout registration,git push –u origin registration. We see that registration branch has been added in the remote repo on Github.

git pull

git pull command is used to pull contents from the remote repo.

Summary

Git as a version control system is of prime importance as it is used almost in every IT firm, and is very handy. We have seen the main git commands and their extensive examples. There are a lot of Git-based UI clients too like Source Tree, GitHub Desktop, TortoiseGit, GitKraken, etc which help developers in performing their day-to-day git operations, apart from using git commands via bash. We will be back with another article on Git to demonstrate more advanced features. You can also consider doing our Azure DevOps Training from Scholarhat to upskill your career.

FAQs

Q1. What is Git for beginners?

Git is a version control system used to track changes in file. Beginners can start with basic commands like commit, push, and pull that will help in managing their projects efficiently.

Q2. Why Should I Use Git?

By using Git, you can easily track changes in your code, collaborate with other developers and also revert to previous versions if required.

Q3. Can Git be used for non-code files?

Yes, Git can be used to manage non-code files as well. It is widely used for version controlling documents, images, configuration files, etc.

Q4. What is the basic concept of Git?

Git is a distributed version control system which is mainly used to track changes in files. It also lets users to collaborate on projects.

Q5. How do I start coding in Git?

You can follow these steps to start coding in Git:
  1. Install Git on your computer.
  2. Set up a new Git repository for your project.
  3. Use Git commands like 'git add', 'git commit', and git push' to manage your code.

Take our free devops skill challenge to evaluate your skill

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET CHALLENGE

Share Article
Batches Schedule
About Author
Anurag Sinha (Author and Full Stack Developer)

He is a Full stack developer, and Author. He has more than 8 years of industry expertise on .NET Core, Web API, jQuery, HTML5. He is passionate about learning and sharing new technical stacks.
Accept cookies & close this