Hamza Kachachihamzakachachi.hashnode.dev·Jul 22, 2024Unlocking Advanced Git Skills for Full Stack DevelopmentGit is an essential tool in the modern full-stack developer's toolkit. While basic commands like git add, git commit, and git push are commonly used, there are advanced features of Git that can significantly enhance workflow efficiency. In this blog ...1 likeAdvanced Git Techniques
Darshana Mahesh Takawaletechwithdarshana.hashnode.dev·Apr 11, 2024Day 11 Advance Git & GitHub for DevOps Engineers: Part-2Git 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...#90daysofdevops
SWATHI PUNREDDYswathireddy.hashnode.dev·Feb 11, 2024Day 11 Task: Advanced Git & GitHub for DevOps Engineers - Part 2Welcome back to our DevOps journey! In today's installment, we're diving deeper into Git and GitHub, focusing on advanced techniques that every DevOps engineer should master. Let's explore Git stash, cherry-pick, and resolving conflicts. Git Stash: S...48 reads#CodeManagement
Payal Saindanepayalsaindane27.hashnode.dev·Oct 24, 2023Git Stash, Cherry-Picking, and Handling Conflicts – Advanced Git Techniques for DevOpsWelcome to Day 11 of our DevOps journey, where we delve into the finer aspects of version control and collaboration using Git. In this blog, we'll uncover the art of stashing, cherry-picking, and gracefully handling conflicts – three powerful techniq...33 readsgit stash
Suraj bariklinuxenthusiast.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...advanced git and github
Ritul Guptaritul.hashnode.dev·Apr 3, 2023Part 4-Advance Git & GitHub for DevOps Engineers.Cherry-pick Git cherry-pick command allows you to integrate selected, an individual commits from any branch into your current HEAD branch. This is in contrast with other ways such as merge and rebases which normally apply many commits into another br...3 likesGitHub