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
Amulyaawscloudbasics.hashnode.dev路Nov 2, 2024Git Branching Strategy: A Practical Guide with Real-World ExamplesIn the world of DevOps and software development, having an efficient branching strategy is crucial for maintaining code quality and ensuring timely releases. This guide will walk you through everything you need to know about Git branching strategy, u...DiscussDevOpsGitHub
ganesh mondalganeshcmondal.hashnode.dev路Sep 7, 2024Understanding Git Branching Strategies 馃殌When working on software projects, especially with a team, organizing your work is crucial. That鈥檚 where Git branching strategies come in! By following a branching strategy, you can keep your work neat, avoid conflicts and ensure a smooth development...DiscussGitHub
Batool Fatimainnamaf.hashnode.dev路Aug 13, 2024Git (DevOps 4)Hello everyone, I am Batool Fatima. I am 18 years old. I have been learning DevOps for a month now. This is my fourth code blog. In last blog, I explained the workflow of git. Today, Let's learn about branches, Git conflict and Git Stashing with me. ...Discuss路10 likesGitHub
Muzammil Jan90days.hashnode.dev路Aug 13, 2024Git Essentials with SSH: Branches, Revert, Reset, and MergeWhat is a Branch? A branch in Git is essentially a pointer to a specific commit in the history of your project. It allows you to diverge from the main line of development and work on new features, bug fixes, or other changes independently. Git Revert...DiscussGit
Nile Bitsnilebits.hashnode.dev路Aug 4, 2024Boost Your Productivity: Sorting Git Branches Like a ProIn modern software development, Git is the cornerstone for version control, offering an intricate yet efficient system for managing code changes. One aspect often overlooked is the organization and sorting of Git branches. Properly managing and sorti...DiscussGitHub
RAKESH DUTTAdailydoseindevops.hashnode.dev路Jul 25, 2024Branching Strategy in Git . 馃尶GitHub Flow branching strategy helps teams work on coding and product development more efficiently. Multiple developers can work together to write code together or share a computer to collaborate closely. This technique helps to release new features ...DiscussDevOps Slow to Flow </>git branch
Byung Joo Jeongjoo.hashnode.dev路May 15, 2024Project : Git Branch Strategy : develop -feature/#3 - feature/#2 _ Push : Pull : Pull Request Compare and Base Branch1. PR : base(develop) <- compare(feature/#3) 2. PR : base(feature/#3) <- compare(feature/#2) In conclusion, feature/#3 is merged into develop, feature/#2 is merged into feature/#3 Develop branch -> feature/#3 branch (based on develop) -> feature/#2 b...DiscussBaseBranch : CompareBranc
Byung Joo Jeongjoo.hashnode.dev路May 11, 2024Project Trouble Shooting : Linking "Spring" to "GitHub" (Process of git init~)#Foreword Although I've participated in several team projectcs before, I've never personally set up a Spring project and linked it to Git repositories for team bollaboration. Spring initial setup and linking it to git repositories for team members. J...Discuss#Git Typical Workflow
Darshana Mahesh Takawaletechwithdarshana.hashnode.dev路Apr 10, 2024Day 10 Advance Git & GitHub for DevOps EngineersGit branching is a powerful feature of the Git version control system that allows us to work on multiple independent lines of development within the same repository. Here's some information about Git branching: Git Branching Use a branch to isolate d...Discussgit branch