Vanshika Sharmavanshikasharmaa.hashnode.dev·Nov 8, 2024Advance Git & GitHub for DevOps EngineersGit Branching Git branching enables you to establish distinct lines of development within a project. You can create feature branches for new functionalities and hotfix branches for urgent repairs while maintaining a stable main branch. This approach...DiscussResolving conflicts
Tvisha rajiforKeploy Community Blogkeploy.hashnode.dev·Nov 4, 2024How to Delete Local and Remote Branches in Git: A Complete GuideTLDR; Deleting a Local Branch in Git To delete a local branch, use one of these commands: Safe deletion: git branch -d <branchName> Force deletion: git branch -D <branchName> Deleting a Remote Branch in Git To delete a branch from a remote repos...DiscussGitHub
Imran Shaikhlearnwithimran.hashnode.dev·Oct 18, 2024Advance Git & GitHub for DevOps EngineersMastering Git Branching, Reverting, Reseting, Merging and Rebasing for DevOps Engineers In today’s fast-paced DevOps environment, mastering version control is crucial for seamless collaboration, automation, and continuous integration. At the heart of...DiscussGit
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Oct 5, 2024Git Flow Branching StrategyGit Flow Git Flow uses multiple long-lived branches, including main, develop, release, and hotfix, in addition to short-lived feature branches. This strategy provides a structured process for managing different types of changes, making it ideal for l...Discuss·46 readsKubernetes Basics: A Beginner’s GuideGit
Nahidnahidislam.hashnode.dev·Oct 3, 2024From Git to Branching: Navigating the Core of Modern Version ControlIn modern software development, version control systems have become essential tools for managing codebases, allowing multiple developers to collaborate seamlessly. Git, the most widely used version control system, stands out due to its flexibility, s...DiscussGit
Adarsh Nadarshn.hashnode.dev·Aug 16, 2024Week 2 of My DevOps Journey: Advanced Git, Shell Scripting, and Linux MasteryIntroduction Continuing my journey into the world of DevOps, Week 2 was all about deepening my understanding of shell scripting, mastering Git branching strategies, and preparing for real-world applications of these tools. Following Abhishek Veeramal...Discuss·4 likes·36 reads#week2
M'mah Zombommahzombo.hashnode.dev·Feb 27, 2024How To Push To a Branch with Simply "git push"Many times in your projects you have to create Git branches to keep your workflow and code in order and to safe guard your code from yourself. Let's say you cloned a repository and locally created a branch named development in it. When you make chang...Discuss·6 likes·29 readsHow ToGit
Kajal Upadhyaythetechgirl.hashnode.dev·Feb 22, 2024Git Branching StrategiesGit branching strategies are the compasses that guide teams through the labyrinth of collaborative software development. By adopting a structured approach to branching, teams can streamline their workflows, minimize conflicts, and deliver high-qualit...DiscussGit
SWATHI PUNREDDYswathireddy.hashnode.dev·Feb 10, 2024Day 10 of 90 Days of DevOps: Mastering Git for Effortless Code ControlWelcome back to Day 10 of our 90-day journey into the world of DevOps! Today, we're diving into Git, a tool that helps developers like you and me manage our code effectively. Whether you're fixing bugs, adding new features, or just tinkering with ide...Discuss·47 readsmerge & rebase
Supriya Surkarsupriyasurkar.hashnode.dev·Feb 6, 2024Day 10 Task: Advance Git & GitHub for DevOps EngineersThis is #90DaysofDevops challenge under the guidance of Shubham Londhe sir. Day 10 TASK Introduction In the journey of DevOps, mastering Git and GitHub stands as a pivotal skill. As we delve into Day 10's task, we explore advanced Git functionalities...Discuss·10 likes·76 readsGitHub