Skip to content

Instantly share code, notes, and snippets.

View IgnusG's full-sized avatar
:octocat:
That’s weird, where did the status go?

JJ IgnusG

:octocat:
That’s weird, where did the status go?
View GitHub Profile
@IgnusG
IgnusG / git-superfixup.pl
Last active April 13, 2022 12:59 — forked from oktal3700/git-superfixup.pl
Perl script for automating the process of creating fixup! commits for use with git rebase -i --autosquash
#!/usr/bin/perl
# Scan unstaged changes in git tracked files, identify which commits they could
# be applied to as fixups, and automatically produce the appropriate "fixup!"
# commits for use with "git rebase -i --autosquash".
#
# Copyright (C) 2016, 2017 by Mat Sutcliffe
# This program is free software; you can redistribute it and/or modify it under
# the GNU General Public License as published by the Free Software Foundation;
# either version 2 of the License, or (at your option) any later version.