Introduction To Git- Beginner’s Guide

Git is a Version Control System that is used to keep records of the Development code. It is important in companies when they are making a large project and the tasks are divided into various developers of the company. In order to track what work is done and by whom, we use Git.

Git is also used as a backup for the codebase. If the user has deleted the code or has lost it, he/she can get the backup from Git and can clone it if he has uploaded it to Git.

Git can be said as a distributed development system with the help of which, large tasks can be distributed to various other developers. In layman’s terms, Git is a platform where the developers upload their part of the task and can access each other’s code and pull it from Git to their own IDE platform. This will let them get the features that are developed by other developers into their own codebase. This will help in streamlining the tasks that were distributed. Hence saving time and increasing efficiency.

How to use Git?

First, you need to install Git on your computer. You can download the latest version of Git from the official website (https://git-scm.com/downloads) and follow the installation instructions for your operating system. After this follow the below-mentioned steps:

Making a repository

The first thing to do in order to use Git in your project is to create a Repository.

To create a repository, we need to sign up on git. 

After a successful login, we need to make a Repository where we have to store our code. You can find a green button with the title “New”  on the top left side of the git webpage. 

This will let you to the following page:

– You need to give a repository name. Usually, it is the same as the name of your project.

– Next as a beginner you can make your project public, but if you want to restrict your repo, then you can make it private.

– Tick the README file. You can edit the ReadMe file and can provide a brief introduction about the repository. Click the Create Repository button at the bottom.

Your Repository will be created and it will lead you to the following page.

Click on the green button on the right side named Code and copy the HTTP URL. This is the URL of the repository you made which will help you link your project with this repo.

Connecting your project to the Repository

If you want to connect your project with Git, you need first initialize Git in your IDE.

Command: git init

Suppose one of the developers  Dev-A completed one part of the task and wants to upload his code on Git.

To add files we need to push

Command :

1. To add a particular file on git

Git add filename

2. To add all the files on git

Git add. 

To Push the code, we first need to commit.

Commit is a comment that gives a summary of what the code you pushed on Git is about. Commit is mostly of 2-3 words which help in getting an idea of the code that resides within that. Commit is compulsory with every push we make. This helps in analyzing or searching any block of code just by reading the commit. Therefore commit should be precise but accurate and should relate to the code along with it being pushed.

Command: git commit -m “message or comment”

After finishing the above steps, we added the files we want to upload or push on our git repository but to actually upload it on Git, we need to push our code.

For this, we need to link the repository we made with our project.

To do so, we need to set a remote origin.

Command: git remote add origin “URL of the repository we copied before”.

Now since the origin is set, we can push our code on git by giving the name of the branch.

Command: git pushes origin main, 

where main is the branch name. We will talk about branches in some other blog since this one just covers the basic functions of git.

Suppose another co-developer Dev-B also completed the task and wants to upload his code. Now before uploading, it is a good habit to first get the latest code with the latest features of the project in our codebase. This will save you from conflicts. 

Conflicts are the errors while merging your code and the one that is coming from git.

This could happen if two developers are working on the same file. Conflicts usually occur very often and cannot be avoided but by following certain rules, we can lower the chances of conflicts.

 Therefore Dev-B should first get the code that has been uploaded by DEV-A, update his codebase with the latest code of Dev-A and align it with his own code and resolve the conflicts if any using the Merge Editor and then he should push his code. To get the code from git to our own IDE is known as Pull.

Command: git pull origin branch_name

Conclusion

That’s all for now! git pull origin bransh_nameThese are some of the very basic but important processes of GIT that are used by everyone using git. I hope you got a fair idea about what git is about, why it is used and how can we push and pull the code from it.


Posted

in

by

Recent Post

  • How to Connect A Biometric Attendance Device to a System through JS and Node.js?

    In the world of highly advanced workspaces, the utilization of biometric attendance structures has come to be important for accurate and steady tracking of worker or student attendance. This blog publishes objectives to provide a complete guide on integrating a biometric attendance device with a gadget with the use of JavaScript and Node.Js. By making […]

  • How to Implement File Uploads in Node.js with Multer?

    For many web applications that let users share papers, photos, and other types of material, file uploads are a necessary functionality. Multer is a well-liked middleware used for Handling file uploads in Node.js using Multer middleware.in the Node.js environment to effectively handle file uploads. We’ll look at how to use Multer to create file uploads […]

  • How to Use Local Storage to Persist Data in a JavaScript Application?

    Data persistence is a key aspect of web applications. In JavaScript, one of the primary tools for achieving this is Local Storage, a part of the Web Storage API. This JavaScript data persistence tool provides a simple key-value storage mechanism within the user’s browser. Unlike session storage, which persists data only during a session, Local […]

  • How to Use WordPress API?

    WordPress stands out as a leading content management system, celebrated for its dynamic capabilities in website and blog development. Renowned for its rich feature set and extensive customization options, WordPress empowers creators to fashion captivating online experiences. In recent times, WordPress has expanded its horizons into the realm of APIs, granting developers a potent tool […]

  • How to Use Post and Pre Hooks in Mongoose?

    In Mongoose, a widely-used library for working with MongoDB, there are valuable tools called “Pre and Post Hooks.” These hooks, also known as “Mongoose Middleware” or “Mongoose Model Hooks,” allow developers to run their own code just before or after specific actions on the database. With “Pre Hooks,” you can customize actions before they happen, […]

  • How To Create Reusable Components in React: Best Practices

    Rеact is a popular library for building usеr intеrfacеs with JavaScript. One of the main benefits of Rеact is its ability to create reusable componеnts that can be used in different parts of your application. Reusable componеnts can help you savе timе, rеducе codе duplication, and еnsurе consistеncy in your UI. However, creating rеusablе componеnts […]