Tagged articles
9 articles
Page 1 of 1
Java Companion
Java Companion
Mar 6, 2026 · Backend Development

Merge vs Rebase: The Ultimate Guide to Git Merge Strategies

This article walks through a realistic scenario where two developers work on parallel feature branches, compares the outcomes of using git merge versus git rebase—including fast‑forward and non‑fast‑forward merges, conflict resolution steps, and the impact on commit history—so you can choose the right strategy for your workflow.

GitVersion Controlcommit history
0 likes · 7 min read
Merge vs Rebase: The Ultimate Guide to Git Merge Strategies
Code Mala Tang
Code Mala Tang
Oct 6, 2025 · Fundamentals

Mastering Interactive Rebase: Turn Your Git History into a Clear Story

Learn how to use interactive rebase in your daily development workflow to clean, reorder, and rewrite commit history, turning scattered changes and pull‑request feedback into a coherent, readable story that improves team collaboration and code maintainability.

GitVersion Controlcommit history
0 likes · 7 min read
Mastering Interactive Rebase: Turn Your Git History into a Clear Story
Top Architect
Top Architect
Apr 16, 2025 · Fundamentals

How to Delete Commit History with git revert and git reset

This article explains why you might need to remove a commit from Git history, demonstrates how to use git revert to create a new commit that undoes changes while preserving history, and shows how git reset combined with a forced push can completely erase unwanted commits from both local and remote repositories.

Force PushGitVersion Control
0 likes · 12 min read
How to Delete Commit History with git revert and git reset
Top Architect
Top Architect
Aug 20, 2024 · Backend Development

How to Delete Git Commit History Using git revert and git reset

This article explains why and how to remove unwanted Git commit history by using git revert to create a compensating commit, git reset to move the HEAD pointer, and git push --force to overwrite the remote repository, with step‑by‑step commands and safety tips.

GitVersion Controlcommit history
0 likes · 11 min read
How to Delete Git Commit History Using git revert and git reset
Top Architect
Top Architect
Aug 17, 2024 · Fundamentals

How to Delete a Git Commit from History Using git revert, git reset and Force Push

This article explains why you might need to remove a mistaken Git commit, demonstrates how to use git revert and git reset with various options, shows step‑by‑step commands—including force‑pushing to remote—to completely erase the unwanted commit while preserving or discarding history as required.

Force PushGitVersion Control
0 likes · 11 min read
How to Delete a Git Commit from History Using git revert, git reset and Force Push
Top Architect
Top Architect
Aug 1, 2024 · Fundamentals

How to Delete Commit History Using git revert, git reset and Force Push

This article explains when and how to use git revert to undo commits while preserving history, demonstrates git reset for removing commits entirely, and shows how to force‑push the cleaned state to a remote repository, including safety warnings and practical command examples.

Force PushGitVersion Control
0 likes · 10 min read
How to Delete Commit History Using git revert, git reset and Force Push
Top Architect
Top Architect
Jul 6, 2024 · Fundamentals

How to Delete Commit History Using git revert, git reset, and Force Push

This article explains why and how to remove unwanted Git commit history by using git revert to create undo commits, git reset to move the HEAD pointer and discard changes, and finally force‑pushing the cleaned local branch to overwrite the remote repository, with step‑by‑step code examples and safety tips.

Force PushGitVersion Control
0 likes · 11 min read
How to Delete Commit History Using git revert, git reset, and Force Push