| 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 prevents potential bugs in advance. Since GitHub introduced the Pull Request feature in 2008, it has become the standard code integration method in both open source projects and enterprise development environments. PR reviews go beyond simply finding errors in code to become an essential quality management activity 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 · 1910 words · In-Jun

How to Delete Merged Git Branches

In Git, a branch is a core concept that provides an independent workspace, allowing developers to develop new features or fix bugs without affecting the main codebase. This branch-based workflow has been one of the key design philosophies since Linus Torvalds designed Git in 2005, which is also why Git branches are designed to be much lighter and faster than other version control systems like SVN or CVS. However, deleting branches after merging is just as important as creating them in the first place. This article comprehensively covers the necessity of branch deletion, specific methods, automation, and recovery procedures. ...

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