<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr" -->

---
title: The git history command deserves more attention | daily.dev
description: Git 2.54 and 2.55 introduced an experimental `git history` command with three subcommands — `fixup`, `reword`, and `split` — that simplify complex commit...
canonical: https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: The git history command deserves more attention | daily.dev
og:description: Git 2.54 and 2.55 introduced an experimental `git history` command with three subcommands — `fixup`, `reword`, and `split` — that simplify complex commit...
og:url: https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr
og:image: https://api.daily.dev/og/posts/4x11KDEgr.png
og:image:alt: The git history command deserves more attention
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# The git history command deserves more attention

**[Hacker News](https://daily.dev/sources/hn)** · 5 min read · 9 upvotes · 0 comments

## Summary

Git 2.54 and 2.55 introduced an experimental `git history` command with three subcommands — `fixup`, `reword`, and `split` — that simplify complex commit history editing without requiring interactive rebase. `fixup` folds staged changes into an older commit and automatically rebases all descendant branches. `reword` updates a commit message and rebuilds the stack on top. `split` interactively breaks one commit into two. A key property is atomicity: operations are refused if they would produce conflicts, keeping the tree in a clean state. While not as powerful as jj (no first-class conflicts, no operation log), `git history` delivers many of jj's workflow benefits without switching tools, and is bundled with core git.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://lalitm.com/post/git-history>

---

Tags: [#git](https://daily.dev/tags/git), [#version-control](https://daily.dev/tags/version-control)

[View this post on daily.dev](https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"The git history command deserves more attention","url":"https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr"},"datePublished":"2026-07-14T02:26:37.641Z","dateModified":"2026-07-14T06:21:27.525Z","description":"Git 2.54 and 2.55 introduced an experimental `git history` command with three subcommands — `fixup`, `reword`, and `split` — that simplify complex commit...","image":"https://media.daily.dev/image/upload/s--VDukGCjf--/f_auto/v1722860399/public/Placeholder%2002","thumbnailUrl":"https://media.daily.dev/image/upload/s--VDukGCjf--/f_auto/v1722860399/public/Placeholder%2002","isAccessibleForFree":true,"articleSection":"Hacker News","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Hacker News","logo":"https://media.daily.dev/image/upload/t_logo,f_auto/v1/logos/hn","url":"https://daily.dev/sources/hn"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":9},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"git,version-control","timeRequired":"PT5M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Hacker News","item":"https://daily.dev/sources/hn"},{"@type":"ListItem","position":3,"name":"The git history command deserves more attention"}]}
```

