Tanmaya AroraforAll About DevOps!!tanmaya1234.hashnode.dev·Aug 14, 2024Day 16: Advanced Git and GitHub 🚀1. Git Branching: The Power of Parallel Development 🌳 Branches in Git are like different paths you can take in your project's history. They allow you to work on features, bug fixes, or experiments without affecting the main project. Thus, allowing m...DiscussGitHub
Neha Bisenneha99.hashnode.dev·Aug 18, 2023Advance Git & GitHub for DevOps EngineersAdd a text file called version01.txt inside the Devops/Git/ with “This is the first feature of our application” written inside. This should be in a branch coming from master, [hint try git checkout -b dev], switch to dev branch ( Make sure your commi...Discuss·33 readsGitHub
Suraj barikforSuraj's Spark ☁️linuxenthusiast.hashnode.dev·Aug 7, 2023Advance Git & GitHub for DevOps Engineers: Part-2🚨Git Stash: git stash is a Git command to locally store your recent changes in a separate area so you can fetch those changes later. Stashing is handy if you need to quickly switch context and work on something else, but you're mid-way through a cod...Discussadvanced git and github
Suraj barikforSuraj's Spark ☁️linuxenthusiast.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
Yashraj Jaiswalyashraj-jaiswal.site·Jul 25, 2023👉👑 Advanced Git and GitHub for DevOps engineers.🔥🔥📍 Introduction: 👨🏫 Hey there! In this article, we're going to explore some super handy and flexible Git commands. By learning these advanced features, you'll be all set to manage complex branching strategies, sort out conflicts like a pro, and ke...DiscussDevops
Mizan Firdausimizanf123.hashnode.dev·Jul 4, 2023Deep Dive in Git & GitHub for DevOps EngineersWhat is Git and why is it important? Git is a version control system that allows developers to track changes to their code over time. It was created by Linus Torvalds in 2005 and has since become one of the most widely used tools in the software deve...Discuss·4 likesDevops
Vrishni Shree V Bvrishni.hashnode.dev·Apr 14, 2023DevOps, Day - 11What is git stash? git stash is a command in Git that allows you to save your changes without committing them, by creating a temporary "stash". Using git stash can be useful when you want to switch branches or perform other actions that require a...Discuss·94 readsDevopsDevops
Vrishni Shree V Bvrishni.hashnode.dev·Apr 13, 2023DevOps, Day - 10what is git branching? Git branching is a feature of the Git version control system that allows you to create separate lines of development within a project. Each line of development is called a branch, and it allows you to work on different featu...Discuss·75 readsDevopsDevops