#version-control
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...
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...
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...
Sometimes, we might make a change to our code that we later decide we don't want to keep. The reset command is a tool in Git that can help us to undo...
Introduction In Git, an alias is a custom command or a shortcut that you can create to make your Git workflow more efficient. You can create an alias...