• GIT – How To Check Status Of Your Files?

    GIT – How To Check Status Of Your Files?

    How To Check Status Of Your Files? Table Of Contents: What Is The Status Of A File? How To Check The Status Of Files? Examples Of  Checking Status. (1) What Is The Status Of A File? By knowing the status of a file we can see, which changes have been staged, which haven’t, and which files aren’t being tracked by Git.  It will just show you, in which state the files are. (2) How To Check Status Of Files? To check the status of the file run the below command. git status (3) Examples Of Checking Status Example-1: Initial State

    Read More

  • GIT – How To Add Files To Stagging Area?

    GIT – How To Add Files To Stagging Area?

    How To Add Files To Stagging Area? Table Of Contents: What Is A Staging Area? Adding Files To Staging Area? Examples Of Adding Files. (1) What Is A Staging Area ? A stage is something where people come for an audition, or performance being judged by the judges and gets selected. Likewise in ‘GIT’ , a staging area is something where you put your files for GIT to track, and you review what are the changes you have done. After you finalize the files, then you can commit them to the ‘git’ repository. (2) Adding Files To The Staging Area.

    Read More

  • GIT – Adding Files To Project.

    GIT – Adding Files To Project.

    Adding Files To Project Table Of Contents: Adding Files To Project. Checking The Status Of The Repository. (1) Add Files To Your Project: After you initialize your GIT repository, it’s time to add files to your project folder. Whatever files, folders, or images you add to your project, GIT will be able to track it. (2) Checking Status Of The Repository To check the status of the GIT repository run the below command. git status Note: Here you can see, It is showing ‘Untracked Files’. That means these files are still in your local folder. To be able to track

    Read More

  • GIT – How To Create A GIT Repository ?

    GIT – How To Create A GIT Repository ?

    How To Create A GIT Repository ? Table Of Contents: Create Your New Project Folder. Initializing The Project Folder With GIT. (1) Creating A New Project Folder Create your project directory where you want to keep all of your project files. (2) Initialize The Folder With GIT You need to initialize your new folder with GIT, so that it will track the history of the files. Go inside the project folder and run the below command. Step-1: Go Inside The Project Folder Step-2: Right Click Inside The Folder and Select GIT Bash Here Step-3: GIT Command Prompt Will Open Step-4:

    Read More

  • GIT – What Is A GIT Repository ?

    GIT – What Is A GIT Repository ?

    What Is A GIT Repository ? Table Of Contents What Is Git Repository ? Types Of Git Repository ? (1) What Is A GIT Repository? A Git repository (repo) is a storage location where all the files, history, and version control information of a project are kept. It helps track changes, collaborate with others, and revert to previous versions when needed. (2) Types Of GIT Repository? There are two types of Git repository. Local Repository Remote Repository (3) Local GIT Repository. Store all the file history, branches and other settings in your local computer. A Git repository is the .git/ folder inside

    Read More

  • GIT – GIT Environment Setup

    GIT – GIT Environment Setup

    GIT Environment Setup Table Of Contents: What Is GIT Environment Setup? Setting Up GIT Environment Variables. (1) What Is GIT Environment Setup ? If you are working with other developers, you need to know who is checking the code in and out, and making the changes. Setting user.name and user. email is the necessary configuration option as your name and email appear in your commit messages. (2) Setting Up GIT Environment Variables. (1) Setting Up Username git config – global user.name 'Subrat@1' (2) Setting Up Email Id git config – global user.email '[email protected]' (3) Setting Colored Output git config – global color.ui true

    Read More

  • GIT – How To Install GIT ?

    GIT – How To Install GIT ?

    How To Install GIT Step-1:Open The GIT Website https://git-scm.com/downloads Step-2: Choose The Type Of Operating System You Have Step-3: Double Click On Git .exe File Step-4: Read The License Agreement And Click On Next Step-5: Select Destination Location Step-6: Keep This As It Is. Step-7: Keep This As It Is Step-8:Keep This As It Is Step-9:Keep This As It Is Step-10:Keep This As It Is Step-11:Keep This As It Is Step-12:Keep This As It Is Step-13:Keep This As It Is Step-14:Keep This As It Is Step-15:Keep This As It Is Step-16:Keep This As It Is Step-17:Keep This As It Is

    Read More

  • GIT – What Is GIT ?

    GIT – What Is GIT ?

    What Is GIT? Table Of Contents: What Is GIT ? Features Of GIT. GIT Workflow. (1) What Is GIT ? GIT is a Version Control System which will automatically create different versions of your file when you make any changes. It is most widely used for source code management in software development. GIT allows multiple developers to work on a single file and merge the changes at last. It supports non-linear development through its thousands of parallel branches (2) Features Of GIT ? Tracks history Free and open source Supports non-linear development Creates backups Scalable Supports collaboration Branching is easier

    Read More

  • GIT – What Is Version Control ?

    GIT – What Is Version Control ?

    What Is Version Control System? Table Of Contents: What Is Version Control System? Benefits Of Version Control Systems (1) What Is Version Control System? Imagine you are working on your project assignment and every day you are adding up something to your project. And you just realized that today you had done something wrong in your project and want to revert it back to the previous day’s work. In this situation, if you have saved your previous day’s work then you can revert back to that. So if you save everyday work in a separate file manually, it will be

    Read More

  • GIT –  Syllabus

    GIT – Syllabus

    (1) What Is Version Control ? (2) Benefits Of Version Control Systems (3) What Is Source Code Management ? (4) What Is GIT ? (5) Why We Need GIT ? (6) How To Install GIT ? (7) GIT Environment Setup (8) GIT Terminology (9) GIT Command (10) Git Config Command (11) Git Init Command (12) Git Clone Command (13) GIT Checkout Command (14) Git Add Command (15) Git Commit Command (16) Git Status Command (17) Git Push Command (18) Git Pull Command (19) Git Branch Command (20) Git Merge Command (21) GIT Merge Conflict (22) Git Log Command (23) Git

    Read More