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 ...Advancd git
Alan Linsalanlins.hashnode.dev·Aug 6, 2024Git Rebasing: Must-Know Commands SimplifiedUsing rebasing can make development easier. However, it gets complex when the team decides to keep a single commit per pull request, rebase branches with master, check out branches from remote, and fix conflicts. This article will list a few of the m...GitHub
Asfak Ahmedasfakahmedsblog.hashnode.dev·Apr 18, 2024Git Conflictগিট কনফ্লিক্ট কি? গিট কনফ্লিক্ট হচ্ছে একটি ইরর ( গিটহাবের তৈরি করা ইরর ), যা হলে আপনার প্রোগ্রাম আর চলবে না যতক্ষণ না এটি আপনি সল্ভ করবেন। গিটহাব এই ইরর তৈরি করে কারণ সে বুঝতে অক্ষম হয়ে যায় যে কোন কোডগুলো ফেলে দিবে এবং কোন কোডগুলো প্রোজেক্টে রাখবে যা...58 readsGit
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
Moiz Asifmoiz-journeytodevops.hashnode.dev·Aug 7, 2023Day 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...cherry-pick
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