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
ganesh mondalganeshcmondal.hashnode.dev·Sep 9, 2024Managing and Resolving Git Conflicts with Ease 🚧Git is a powerful tool for version control, but when multiple developers are working on the same project, conflicts can happen. Don’t worry, though! Git conflicts are a normal part of the development process, and with the right approach, they can be ...DiscussAdvancd git
Dhruv Rajvanshidhruv-blogs.hashnode.dev·Aug 5, 2024Day-6 | Git & Github AdvancedWelcome to Day 6 of my DevOps learning journey! Today, we're exploring advanced Git and GitHub concepts that are essential for effective version control and collaboration. These skills are crucial for developers and teams to manage codebases, streaml...DiscussDevops
Saad Khansaadkhann.hashnode.dev·Jun 13, 2024Understanding Cherry-Picking in GitAs developers, we frequently use version control systems like Git to manage our codebase. One feature in Git that can be both powerful and potentially problematic if misused is cherry-picking. What is Cherry-Picking in Git? Cherry-picking is a featur...DiscussGitHub
Nilkanth Mistrynilkanth1010.hashnode.dev·Feb 10, 2024Day 11 - Advance Git & GitHub for DevOps Engineers: Part-2 🚀Unveiling Git Stash, Cherry-Pick, and Conflict Resolution 🌟 Git Stash: Save Now, Apply Later! 📦💼 Ever needed to switch branches without committing your changes? Enter Git Stash! It's like a coding pause button. Use git stash to save your work, an...Discuss90 Days Of Devops ChallengesGitHub
Basavaraj Telibasavaraj-devops-blog.hashnode.dev·Feb 7, 2024Day 11 of #90DaysOfDevOpsGit Stash Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want ...Discuss·2 likes·30 readsGitHub
Supriya Surkarsupriyasurkar.hashnode.dev·Feb 7, 2024Day 11 Task: Advance Git & GitHub for DevOps Engineers: Part-2This is#90DaysofDevopschallenge under the guidance ofShubham Londhesir. Day 11 TASK Git Stash: Purpose: Git stash serves as a tool to temporarily store changes made in your working directory without committing them to the version history. Usage: W...Discuss·1 like·45 readsgit stash
Shrishail Patilshri123.hashnode.dev·Jan 18, 2024Git Cherry-Pick : Explained with Examples :git cherry-pick is a command used to apply a specific commit from one branch to another. It allows you to pick and apply a single commit's changes onto another branch without having to merge the entire branch. Example Scenario : Suppose you have the ...DiscussAWS
Brett Rowberrybrettrowberry.com·Nov 13, 2023Git Cherry PickI've known about git cherry-pick for some time, but I just used it today for the first time. I had a branch with a lot of changes and I needed one commit to go out right away. So, I cut a new branch and used git cherry-pick <sha>. Easy as pie!DiscussGit
Edward Obohedwardoboh.hashnode.dev·Oct 1, 2023Essential Git CommandsOne of the most frequently used commands in the Git toolkit is git <command> --help. It's your lifeline when you need quick assistance with a particular Git command. However, while it's a valuable resource, the sheer volume of information it can disp...Discuss·1 likeGit