30 Jun 2024
Git

git rebase vs git merge 

When working with Git, there are two common ways to integrate changes from one branch into another: Git merge and Git rebase. While both methods achieve the same end result, they differ in their approach and can have varying effects on the repository’s history. In…

Cheatsheet, Git

Git tutorial & cheatsheet 

Git is a distributed version control system that is widely used in software development. It allows developers to track changes in code over time, collaborate with other developers, and manage code branches for different features or releases. As a software engineer, it’s important to have…