Vibhuti Jainvibhutijain.hashnode.dev·Aug 28, 2024Day 13 Task: Advance Git & GitHub for DevOps EngineersGit Branching Branches are a core concept in Git that allow you to isolate development work without affecting other parts of your repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into an...Discuss#gitchallenge
Muzammil Jan90days.hashnode.dev·Aug 2, 2024Git and GitHub on Amazon Linux: From Cloning Repositories to Committing CodeWhat is Git? Git is a distributed version control system which is used to tracking changes in the source code, enabling multiple developers to work together on non-linear development. It offers efficient branching and merging, enabling seamless colla...DiscussGit
Nilkanth Mistrynilkanth1010.hashnode.dev·Feb 7, 2024Day 10 - Mastering Advanced Git & GitHub 🌟Navigating Git Branches 🌲🚀 Understanding Branches 🤔🌿 Branches in Git are like different storylines in your coding adventure. Each branch lets you develop features or fix bugs without disturbing the main storyline. Think of it as a playground for...Discuss90 Days Of Devops ChallengesDevops
Megha Sharmameghasharma.hashnode.dev·Jan 30, 2024Git RevertIn Git, git revert is a command used to create a new commit that undoes the changes made by a specific commit or commits, effectively reverting the repository's state back to how it was before those changes were introduced. Unlike git reset, which al...DiscussGit
Shrishail Patilshri123.hashnode.dev·Jan 18, 2024Git Revert and Git Reset: Explained with Examples:Git Revert: git revert is used to create a new commit that undoes the changes introduced by a previous commit. It's a safe way to undo changes while preserving the commit history. Git Reset: git reset is used to move the current branch pointer to a d...DiscussAWS
RAKESH REVASHETTIrakesh-revashetti-09.hashnode.dev·Nov 6, 2023Advance Git & GitHub for DevOps EngineersGit branching: Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request. ...Discussgit branching
Payal Saindanepayalsaindane27.hashnode.dev·Oct 16, 2023Advanced Git and GitHub: Enhancing Collaboration and Version ControlIn this blog, we'll dig deep into Git branching, looking at concepts like rebasing and merging, and see how they can make project management better. Git branching:Git branching is like having multiple pathways for your code development. Imagine your ...DiscussGitHub
Moiz Asifmoiz-journeytodevops.hashnode.dev·Aug 6, 2023Day 10: Advance Git & GitHub for DevOps EngineersGit Branching Git branching allows for a structured and organized approach to software development. By working on isolated branches, developers can avoid conflicts, experiment with new features, and maintain a stable main codebase. It's a powerful te...Discussadvanced git
Suraj bariklinuxenthusiast.hashnode.dev·Aug 4, 2023Advance Git & GitHub for DevOps Part-IGit Branching🌿 In Git, a branch is a new/separate version of the main repository. Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branche...Discussadvanced git
Ashmi Sinhadevops101-.hashnode.dev·Aug 3, 2023Advance Git & GitHub for DevOps Engineers | Part 1🎋 Git Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch "main"/"master" and can have multiple other branches. You can merge a branch into another branch usin...DiscussGitHub