Tagged articles
35 articles
Page 1 of 1
Architecture Digest
Architecture Digest
Mar 9, 2026 · Fundamentals

Merge vs Rebase: When to Use Each Git Strategy and How They Handle Conflicts

This article compares Git's merge and rebase commands by walking through a realistic scenario where two feature branches diverge from master, showing how each method resolves conflicts, affects commit history, creates merge commits, and outlines best‑practice guidelines for choosing the appropriate strategy.

Gitconflict-resolutionmerge
0 likes · 7 min read
Merge vs Rebase: When to Use Each Git Strategy and How They Handle Conflicts
Architect's Guide
Architect's Guide
Jan 9, 2026 · Fundamentals

Master Git: From Basics to Advanced Workflows in One Guide

This comprehensive guide walks you through Git fundamentals, core concepts, installation, configuration, common commands, branching, merging, rebasing, tagging, remote repository handling, GUI tools, undoing changes, stash, and cherry‑pick techniques, providing clear examples and code snippets for effective version control.

GitTaggingbranching
0 likes · 43 min read
Master Git: From Basics to Advanced Workflows in One Guide
Code Mala Tang
Code Mala Tang
Jan 7, 2026 · Fundamentals

When to Use Git Rebase vs Merge: Avoid Losing Code

This article explains the core differences between git rebase and git merge, illustrates how each rewrites or preserves commit history with concrete command examples, outlines safe usage scenarios, and provides practical tips to prevent code loss during collaborative development.

Gitcode safetymerge
0 likes · 6 min read
When to Use Git Rebase vs Merge: Avoid Losing Code
Top Architect
Top Architect
Jan 5, 2026 · Backend Development

Reverting Mistaken Commits Locally and Remotely with IntelliJ IDEA

This guide explains how to revert mistakenly pushed code by either manually comparing and deleting unwanted changes or using IntelliJ IDEA's Git reset options (soft, mixed, hard, keep) followed by a force push, ensuring both local and remote repositories return to a specific commit.

Force PushGitintellij-idea
0 likes · 6 min read
Reverting Mistaken Commits Locally and Remotely with IntelliJ IDEA
21CTO
21CTO
Mar 9, 2025 · Fundamentals

10 Open‑Source Tools That Can Supercharge Your Coding Productivity

This article reviews ten open‑source development tools—from IDEs and version control to container platforms and AI‑powered code assistants—explaining how each can streamline workflows, automate repetitive tasks, and significantly boost coding efficiency for developers of any skill level.

AI-assistantContainerizationIDE
0 likes · 13 min read
10 Open‑Source Tools That Can Supercharge Your Coding Productivity
Ops Development & AI Practice
Ops Development & AI Practice
Sep 21, 2024 · Fundamentals

Mastering Git Submodules: A Practical Guide to Dependency Management

Git Submodules let developers embed external Git repositories within a main project, enabling precise version locking, independent histories, and reusable code, while requiring specific commands for adding, initializing, updating, and managing submodule references, and presenting trade‑offs such as operational complexity and limited automation compared to modern package managers.

Gitdependency-managementsoftware-development
0 likes · 7 min read
Mastering Git Submodules: A Practical Guide to Dependency Management
Liangxu Linux
Liangxu Linux
Sep 2, 2024 · Fundamentals

Create a Git Commit Message Template to Keep Your History Clean

This guide explains why simple commit messages are insufficient, outlines the benefits of a standardized commit template, and provides step‑by‑step commands to create, configure, and use a Git commit‑message template globally or per‑repository.

DevOpsGitbest-practices
0 likes · 5 min read
Create a Git Commit Message Template to Keep Your History Clean
Architect's Tech Stack
Architect's Tech Stack
Jul 25, 2024 · Backend Development

Five Advanced Git Commands to Boost Your Development Efficiency

This article introduces five powerful Git commands—stash, reset --soft, cherry-pick, revert, and reflog—explaining their basic usage and advanced tricks, enabling developers to manage temporary changes, roll back commits, copy changes across branches, undo mistakes, and recover lost history efficiently.

Gitbackend-developmentcommand-line
0 likes · 7 min read
Five Advanced Git Commands to Boost Your Development Efficiency
Java Architect Essentials
Java Architect Essentials
Jul 16, 2024 · Fundamentals

Using git rebase to Keep Commit History Clean and Readable

This article explains how git rebase works, demonstrates its effect on commit history with concrete branch examples, compares rebase to merge, and introduces the interactive rebase mode for compressing and cleaning up commits, including conflict‑resolution steps and useful commands.

Gitcommit-historyinteractive rebase
0 likes · 6 min read
Using git rebase to Keep Commit History Clean and Readable
Liangxu Linux
Liangxu Linux
Apr 10, 2024 · Fundamentals

Visualizing Git: Master Merge, Rebase, Reset, Revert & More

This article uses animated visualizations to clearly explain the core Git commands—merge (fast‑forward and no‑ff), rebase, interactive rebase actions, reset (soft and hard), revert, cherry‑pick, fetch, pull, and reflog—showing how each operation affects branches and history.

Gitfetchmerge
0 likes · 12 min read
Visualizing Git: Master Merge, Rebase, Reset, Revert & More
macrozheng
macrozheng
Feb 27, 2024 · Fundamentals

5 Stunning Git GUI Clients to Simplify Your Version Control

This guide reviews five visually appealing Git GUI clients—GitKraken, Fork, SourceTree, SmartGit, and TortoiseGit—highlighting their key features, platform support, and how they make version‑control operations more intuitive and efficient for developers of all skill levels.

development-toolsproductivityversion-control
0 likes · 6 min read
5 Stunning Git GUI Clients to Simplify Your Version Control
Liangxu Linux
Liangxu Linux
Dec 27, 2023 · Fundamentals

Uncovering Git’s Hidden Mechanics: Index, Stash, Refs, and Merge Secrets

This article explains four often‑misunderstood Git internals—how the index, staging area, and --cached option are the same, how stash creates hidden commits, the variety of reference types beyond branches and tags, and why merge commits are not actually empty—using concrete commands and examples.

Gitindexmerge-commit
0 likes · 7 min read
Uncovering Git’s Hidden Mechanics: Index, Stash, Refs, and Merge Secrets
Open Source Linux
Open Source Linux
Sep 25, 2023 · Fundamentals

45 Essential Git Commands Every Developer Must Master

This comprehensive guide covers 45 everyday Git scenarios—from viewing commits and amending messages to advanced branching, rebasing, merging, and stash techniques—providing clear command examples and explanations for developers of all levels.

Gitbranchingcommand-line
0 likes · 28 min read
45 Essential Git Commands Every Developer Must Master
Liangxu Linux
Liangxu Linux
Sep 21, 2023 · Fundamentals

Mastering Git Branch Naming, Workflow, and Commit Message Standards

This guide explains systematic Git branch naming, maps branches to development environments, outlines a typical merge flow, details a comprehensive commit‑message format (including Angular conventions), and provides a practical .gitignore template for clean repositories.

Gitbranchingcommit message
0 likes · 9 min read
Mastering Git Branch Naming, Workflow, and Commit Message Standards
Liangxu Linux
Liangxu Linux
Oct 20, 2022 · Fundamentals

Master Git Global Configuration in 5 Simple Steps

Learn how to set up Git globally on Linux by creating a global config file and configuring your default name, email, branch name, and editor, with clear command examples and tips to avoid repetitive per‑repository settings.

GitTutorialversion-control
0 likes · 7 min read
Master Git Global Configuration in 5 Simple Steps
ByteDance Web Infra
ByteDance Web Infra
Jul 22, 2022 · Fundamentals

Challenges and Optimizations for Large Git Repositories

This article examines why Git struggles with monolithic repositories exceeding 100 GB, outlines storage, performance, stability, and reliability challenges, and presents preventive, mid‑process, and post‑process strategies—including LFS, shallow and partial clones, commit‑graph, bitmap, multi‑pack index, and bundle techniques—to efficiently manage and maintain large Git monorepos.

GitOptimizationlarge-repo
0 likes · 16 min read
Challenges and Optimizations for Large Git Repositories
21CTO
21CTO
Jun 29, 2022 · Fundamentals

What’s New in Git 2.37? Performance Boosts, Sparse Checkout & Security Fixes

Git 2.37 introduces a built‑in file‑system monitor for faster status checks, supports sparse checkout to avoid downloading whole repositories, adds performance‑enhancing stash improvements, and tightens credential‑in‑URL security, offering developers a more efficient and safer version‑control experience.

GitPerformancerelease
0 likes · 4 min read
What’s New in Git 2.37? Performance Boosts, Sparse Checkout & Security Fixes
Open Source Linux
Open Source Linux
Nov 2, 2021 · Fundamentals

Master Git Workflows: From Git Flow to GitHub Flow and Daily Best Practices

This guide walks you through essential Git workflows—including Git Flow, GitHub Flow, and GitLab Flow—covers daily best‑practice tips such as command‑line usage, commit message conventions, .gitignore handling, branch strategies, release tags, merge vs. rebase decisions, history rewriting, hook scripts, shallow cloning, and stash management, all illustrated with clear examples and command snippets.

Gitbest-practicescommands
0 likes · 18 min read
Master Git Workflows: From Git Flow to GitHub Flow and Daily Best Practices
Liangxu Linux
Liangxu Linux
May 7, 2021 · Fundamentals

Essential Git Commands Cheat Sheet for Version Control

This guide provides a comprehensive collection of Git commands covering diff, branch management, file handling, remote repository operations, stash usage, configuration, and advanced techniques, enabling developers to efficiently compare changes, manage branches, clean workspaces, and interact with remote repositories.

Branchconfigurationdiff
0 likes · 11 min read
Essential Git Commands Cheat Sheet for Version Control
Liangxu Linux
Liangxu Linux
Apr 12, 2020 · Fundamentals

Why Cherry‑Pick Can Trigger Hidden Merge Conflicts (And When It’s Safe)

This article explains how using Git's cherry‑pick to copy commits between branches can lead to merge conflicts or silently incorrect code states, illustrates three possible outcomes with a concrete example, and advises when cherry‑pick is appropriate versus using a full merge.

GitMerge Conflictcherry-pick
0 likes · 7 min read
Why Cherry‑Pick Can Trigger Hidden Merge Conflicts (And When It’s Safe)
Liangxu Linux
Liangxu Linux
Mar 8, 2020 · Fundamentals

Master Over 70 Essential Git Commands and Tricks for Developers

This article compiles more than seventy practical Git commands and techniques, explains core concepts such as working directory, staging area, and commit IDs, and provides ready‑to‑use snippets for everyday version‑control tasks, all backed by the open‑source git‑tips and HelloGitHub projects.

GitRepositoryTutorial
0 likes · 20 min read
Master Over 70 Essential Git Commands and Tricks for Developers
ITPUB
ITPUB
Nov 18, 2019 · Fundamentals

Master Git No‑FF Merges, Remote Pushes, and Effective Branch Strategies

This guide walks through disabling fast‑forward merges with --no-ff, demonstrates the full commit workflow, shows how to push changes to a remote repository, resolves common push errors, and outlines a practical branch management strategy for stable master and development branches.

Branch StrategyGitmerge
0 likes · 6 min read
Master Git No‑FF Merges, Remote Pushes, and Effective Branch Strategies
Liangxu Linux
Liangxu Linux
Oct 19, 2019 · Fundamentals

10 Essential Git & GitHub Tips to Boost Your Daily Productivity

This guide compiles ten practical Git and GitHub shortcuts, commands, and tricks—including keyboard shortcuts, URL modifiers, diff formats, and useful CLI commands—to help developers work faster and manage repositories more efficiently.

DevOpsGitGitHub
0 likes · 7 min read
10 Essential Git & GitHub Tips to Boost Your Daily Productivity