<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc" -->

---
title: Git fixup is magic (and Magit is too) | daily.dev
description: A practical guide to creating a `git fixup` alias that lets you amend any past commit, not just the most recent one. The technique combines `git commit...
canonical: https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Git fixup is magic (and Magit is too) | daily.dev
og:description: A practical guide to creating a `git fixup` alias that lets you amend any past commit, not just the most recent one. The technique combines `git commit...
og:url: https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc
og:image: https://api.daily.dev/og/posts/F0vt7peNc.png
og:image:alt: Git fixup is magic (and Magit is too)
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.

# Git fixup is magic (and Magit is too)

**[Lobsters](https://daily.dev/sources/lobsters)** · 5 min read · 1 upvotes · 0 comments

## Summary

A practical guide to creating a `git fixup` alias that lets you amend any past commit, not just the most recent one. The technique combines `git commit --fixup`, interactive rebase with `--autosquash`, and a dummy `GIT_SEQUENCE_EDITOR=true` to make the process fully non-interactive. Each part of the alias is broken down in detail. The post also covers how Magit (the Emacs Git client) provides a built-in `magit-commit-instant-fixup` command that achieves the same result with a simple UI.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://arialdomartini.github.io/git-fixup>

## Similar posts on daily.dev

- [Git Commands For a Single Commit](https://daily.dev/posts/git-commands-for-a-single-commit-rbwx1zjhh) · Atomic Spin · 1 upvotes · 1 comments
- [The git history command deserves more attention](https://daily.dev/posts/the-git-history-command-deserves-more-attention-4x11kdegr) · Hacker News · 9 upvotes · 0 comments
- [Rebasing in Magit](https://daily.dev/posts/rebasing-in-magit-cmmc3nrey) · Hacker News · 0 upvotes · 0 comments

---

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/git-fixup-is-magic-and-magit-is-too--f0vt7penc)

```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":"Git fixup is magic (and Magit is too)","url":"https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc"},"datePublished":"2026-04-11T21:24:15.165Z","dateModified":"2026-04-11T21:25:50.445Z","description":"A practical guide to creating a `git fixup` alias that lets you amend any past commit, not just the most recent one. The technique combines `git commit...","image":"https://media.daily.dev/image/upload/s--foaA6JGU--/f_auto/v1722860399/public/Placeholder%2004","thumbnailUrl":"https://media.daily.dev/image/upload/s--foaA6JGU--/f_auto/v1722860399/public/Placeholder%2004","isAccessibleForFree":true,"articleSection":"Lobsters","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":"Lobsters","logo":"https://media.daily.dev/image/upload/s--tl8v_Fku--/f_auto,t_logo/v1698841318/logos/lobste.jpg","url":"https://daily.dev/sources/lobsters"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/git-fixup-is-magic-and-magit-is-too--f0vt7penc","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":1},{"@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":"Lobsters","item":"https://daily.dev/sources/lobsters"},{"@type":"ListItem","position":3,"name":"Git fixup is magic (and Magit is too)"}]}
```

