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
Okoro Emmanuel NzubeforfreeCodeCampfreecodecamp.org·Oct 11, 2024How to Use Git Stash to Efficiently Manage Your CodeSometimes when you’re coding, you need to leave a particular task incomplete to focus on another task – but you don't want to lose your progress. So what do you do? Fortunately, git stash comes to the rescue. In this article, you’ll learn all about t...Discussgitpop
David Carrdcblog.dev·Aug 30, 2024Git Stashing ExplainedStashing Changes When working on a project, you might find yourself in a situation where you need to switch branches or pull updates from a remote repository, but you have uncommitted changes that you don't want to lose. This is where Git's stashing ...Discuss·84 readsGit
Anirudha Mahaleanirudhamahale.hashnode.dev·Aug 26, 2024Git Stash Basics1) To Stash all the files including untracked files git stash push -u -m "message" 2) To View all the stash git stash list 3) To apply a stash git stash apply stash@{0}DiscussGit Commands
Mandlaiammandla.hashnode.dev·Jul 26, 2024>Git stash: Managing Uncommitted Changes Effectively.Something happened recently while I was working on a certain team project. Operating from my forked repository, I had to add a couple of features, A PR for a small but important feature was made and promptly merged, I had to update this repo from ups...DiscussGitHub
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 ...Discuss·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...Discuss#90daysofdevops
Aaron Jevil Nazarethaarons-space.hashnode.dev·Mar 14, 2024Git Commands that you must knowHello fellow developers, have you ever come across a situtation where you needed to learn about git commands but didn't know where to learn from and felt like this not my cup of tea. Good news for you have reached the right place. Get ready to dive i...Discuss·3 likesGit
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 24, 2024Lecture # 15 - Git StashGit Stash: git stash is a command in Git that allows you to temporarily shelve changes you've made to your working directory, so you can work on something else without committing your changes to a branch. Below are the steps to see how git stash work...DiscussDevops
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...Discuss·48 reads#CodeManagement