| Ko

Pull Request Review Best Practices

PR (Pull Request) review is a core collaborative activity that improves team code quality, shares knowledge among developers, and catches potential bugs early. Since GitHub introduced the Pull Request feature in 2008, it has become the standard way to integrate code in both open source projects and enterprise development environments. PR reviews go beyond simply finding errors in code. They are an essential quality management practice in software development that helps team members understand each other’s code, maintain a consistent codebase, and make better design decisions through collective intelligence. ...

July 31, 2024 · 9 min · 1911 words · In-Jun

How to Delete Merged Git Branches

In Git, a branch is a core concept that provides an isolated workspace, allowing developers to add new features or fix bugs without affecting the main codebase. This branch-based workflow has been central to Git since Linus Torvalds created it in 2005, which is why branches are much lighter and faster than in systems like SVN or CVS. Deleting branches after merging is just as important as creating them. This article covers why branch deletion matters, how to do it safely, how to automate it, and how to recover deleted branches. ...

July 11, 2024 · 18 min · 3764 words · In-Jun
[email protected]