Hands-on demo – Working with Git Locally


LearnAzureDevOps-O5

Hands-on demo – Working with Git Locally

Git is a distributed version control system that allows developers to track changes in code, collaborate, and manage projects efficiently. Working with Git locally means managing code changes, commits, branches, and repositories directly on your machine before pushing them to a remote repository (e.g., GitHub, GitLab, Bitbucket).

Key Concepts

  1. Repository: A collection of your project files and the entire Git history.

  2. Commit: A snapshot of the code at a particular point in time.

  3. Branch: A separate line of development that diverges from the main project (e.g., main or master).

  4. Staging Area: A place where changes are prepared before committing them.

Basic Git Workflow with Examples

  1. Initialize a Git Repository

To start working with Git, you need to create a Git repository (also known as a repo).

This will create a .git folder in the project directory to manage version control.

  1. Making Changes

After initializing the repository, you can make changes to files.

  1. Tracking Changes

To track changes, use git status. This command shows which files are modified, staged, or untracked.

Example output:

  1. Staging Changes

To stage changes for commit, use git add.

  1. Committing Changes

Once changes are staged, commit them using git commit.

  1. Viewing Commit History

To view the commit history, use git log.

Example output:

  1. Branching

To create a new branch, use git branch.

Switch to the new branch with:

  1. Merging Branches

After making changes in a branch, merge them back into the main branch.

  1. Pushing to Remote Repository

Once changes are locally committed, push them to a remote repository.

This uploads changes to the remote repository.

Summary

Working with Git locally involves creating a repository, making changes, staging them, committing them, and managing branches. Once everything is ready, you push your changes to a remote repository for collaboration.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.