Abhishek Kishor
Abhishek's Blog

Abhishek's Blog

Follow
Follow
homeAboutbadgesnewsletter
Tag

version control

#version-control

More content

Read more stories on Hashnode


Articles with this tag

18. Merge Conflicts and It's Resolution

Jun 7, 202311 min read

🔊 Introduction A "merge conflict" occurs when there are conflicting changes to the same file or files that Git cannot automatically resolve during a...

18. Merge Conflicts and It's Resolution

17. Git Merge (Part - 2)

May 30, 20237 min read

🔈 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...

17. Git Merge (Part - 2)

15. Branching In Git (In Depth) - Part 2

May 18, 202313 min read

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...

15. Branching In Git (In Depth) - Part 2

13. Git Reset: Comprehensive Guide (Part - 2)

May 9, 20237 min read

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...

13. Git Reset: Comprehensive Guide (Part - 2)

12. Git Reset: Comprehensive Guide (Part - 1)

May 2, 20235 min read

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...

12. Git Reset: Comprehensive Guide (Part - 1)

11. Git Aliases - Simplifying Commands

Apr 27, 20234 min read

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...

11. Git Aliases - Simplifying Commands