#github
Read more stories on Hashnode
Articles with this tag
🔊 Introduction A "merge conflict" occurs when there are conflicting changes to the same file or files that Git cannot automatically resolve during a...
🔈 Three-way Merge Three-way merge is a common merging strategy used in Git to combine changes from two different branches or commits into a single...
Introduction One of the fundamental operations in Git is merging, which combines changes from different branches into a single branch. This process is...
In this article, we'll work on a few examples to understand the concept of branching and many more concepts. 🔈Demo Of Branching Concept Suppose, We...
⚙️ Introduction A branch in Git is a pointer to a specific point in the history of the project. This allows us to work on different parts of our...
Utility 2: Undo Commits At The Repository Level We can use the option reset to undo commits at Repository Level. Syntax: git reset Let’s consider...