Tagged articles

feature-branch

9 articles · Page 1 of 1
Code of Duty
Code of Duty
Jun 13, 2026 · Fundamentals

Git Series Summary & Learning Roadmap: Managing Code and Team Collaboration

This article summarizes a comprehensive Git series that goes beyond command lists to teach development habits, collaboration logic, and a step‑by‑step learning roadmap covering initial commits, .gitignore, branching, rebasing, pull requests, conflict resolution, and the deeper value of version history for teams.

GitGitignoreTeam Collaboration
0 likes · 11 min read
Git Series Summary & Learning Roadmap: Managing Code and Team Collaboration
liandk
liandk
Jun 4, 2026 · Fundamentals

How to Merge a Feature Branch PR into the dev Branch Without Conflicts

This guide walks through a zero‑conflict workflow for merging a feature branch into the dev branch, covering local finalization, pulling the latest dev, merging locally, pushing the feature branch, and creating a GitHub pull request with the correct base and compare settings.

GitWorkflowdev-branch
0 likes · 2 min read
How to Merge a Feature Branch PR into the dev Branch Without Conflicts
DevOps
DevOps
Oct 22, 2018 · Fundamentals

Feature Flags vs Feature Branches: Advantages, Disadvantages, and Implementation Guide

Feature flags (toggles) and feature branches are two strategies for managing new functionality in software development; this article compares their pros and cons, explains when to use each, presents best practices, implementation examples in PHP/Smarty, and lists open‑source frameworks across multiple languages.

DevOpscontinuous integrationfeature flag
0 likes · 12 min read
Feature Flags vs Feature Branches: Advantages, Disadvantages, and Implementation Guide