ganesh mondalganeshcmondal.hashnode.dev·Sep 2, 2024Unlocking the Power of Advanced Git Commands 🚀Git is an essential tool for version control, and while most developers are familiar with basic commands like add, commit, and push, there’s a lot more under the umbrella. In this blog, we’ll explore some advanced Git commands and strategies that can...GitHub
Dhruvkumar Maisuriadevopswithdhruv09.hashnode.dev·Jul 29, 2024Learning Git: Part 4Introduction Welcome to the fourth part of our DevOps learning series! In the previous parts, we covered Git basics, branching and merging, and advanced Git concepts. Now, we'll explore Git strategies and best practices to help you manage your code m...github learninggit-strategies
Nitin Dhimannitindhiman22.hashnode.dev·Jul 26, 2024Deep Dive into Git & GitHub for DevOps EngineersToday, we delve deep into Git and GitHub, essential tools for any DevOps engineer. Understanding version control is crucial for managing code efficiently, collaborating with team members, and maintaining a robust development workflow. Let's explore t...Linux
Sandeep Kalekale00.hashnode.dev·Feb 11, 2024📂Day 11 - Advance Git & GitHub for DevOps Engineers: Part-II🟡 Git Stash In simple terms, git stash is like putting your changes aside temporarily. It allows you to save your work without committing it, so you can switch to another task or branch and then come back to your changes later. It's useful when you...part II
Warren Markhamwarrenmarkham.hashnode.dev·Jan 3, 2024You can stage parts of a file.ℹ If you've only ever staged your changes with the default git add behaviour, read this TLDR to learn about interactive staging. 💡 With interactive staging, you can stage parts of a file. It is a core strategy I use to keep my commit history clea...43 readsGit
Arvind Jaiswalarvindjaiswal.hashnode.dev·Aug 5, 2023Day 10 Task: Advance Git & GitHub for DevOps Engineers.Git Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request. B...DevopsGit
Prabir Kumar Mahathaprabirmahatha.hashnode.dev·Jul 5, 2023DAY 11 DevOps challenge✔️ What is git stash ? It allows you to temporarily store changes that are not ready for committing. Stashed changes are saved separately from your commits. You can use git stash save to create a new stash with an optional message. Stashes can be...1 like·86 readsgitadvanced
Aasifa Shaikmysoftwarediary.hashnode.dev·Jan 16, 2023Day 7: Git Advanced ConceptsGit Conflicts When two developers work on the same repository and when developer1 created a file with some code which is in master branch. Now lets say developer 2 also created the same file and did he work in his file. Here both the developers are w...1 like·97 readsgitadvanced
5 Mins Learn5minslearn.hashnode.dev·Dec 5, 2022How to automate your work using Git’s add-on scripts?Git Hooks Brief Do you know you can automate a part of the work that you do every time during your development? This includes running lint, test cases, etc. before committing and pushing the code. Git provides an excellent option to achieve this. Tha...Git