=pod =head1 NAME App::Git::Autofixup - create fixup commits for topic branches =head1 SYNOPSIS git-autofixup [] =head1 DESCRIPTION F parses hunks of changes in the working directory out of C output and uses C to assign those hunks to commits in CrevisionE..HEAD>, which will typically represent a topic branch, and then creates fixup commits to be used with C. [See C for information about git revision specification syntax.] It is assumed that unstaged changes near changes previously committed to the topic branch are related. C<@{upstream}> or C<@{u}> is likely a convenient value to use for CrevisionE> if the current branch has a tracking branch. By default a hunk will be included in a fixup commit if all the lines in the hunk's context blamed on topic branch commits refer to the same commit, so there's no ambiguity about which commit the hunk corresponds to. If there is ambiguity the assignment behaviour used under C<--strict 1> will be used to attempt to resolve it. If C<--strict 1> is given the same topic branch commit must be blamed for every removed line and at least one of the lines adjacent to each added line, and added lines must not be adjacent to lines blamed on other topic branch commits. All the same restrictions apply when C<--strict 2> is given, but each added line must be surrounded by lines blamed on the same topic branch commit. For example, the added line in the hunk below is adjacent to lines committed by commits C<99f370af> and C. If these are both topic branch commits then it's ambiguous which commit the added line is fixing up and the hunk will be ignored. COMMIT |LINE|HEAD |WORKING DIRECTORY 99f370af| 1|first line | first line | | |+added line a1eadbe2| 2|second line | second line But if that second line were instead blamed on an upstream commit (denoted by C<^>), the hunk would be added to a fixup commit for C<99f370af>: 99f370af| 1|first line | first line | | |+added line ^ | 2|second line | second line Output similar to this example can be generated by setting verbosity to 2 or greater by using the verbosity option multiple times, eg. C, and can be helpful in determining how a hunk will be handled. F is not to be used mindlessly. Always inspect the created fixup commits to ensure hunks have been assigned correctly, especially when used on a working directory that has been changed with a mix of fixups and new work. =head1 OPTIONS =over =item -h Show usage. =item --help Show manpage. =item --version Show version. =item -v, --verbose Increase verbosity. Can be used up to two times. =item -c N, --context N Change the number of context lines C uses around hunks. Default: 3. This can change how hunks are assigned to fixup commits, especially with C<--strict 0>. =item -s N, --strict N Set how strict F is about assigning hunks to fixup commits. Default: 0. Strictness levels are described under DESCRIPTION. =back =head1 INSTALLATION If cpan is available, run C. Otherwise, copy F to a directory in C and ensure it has execute permissions. It can then be invoked as either C or C, since git searches C for appropriately named binaries. Git is distributed with Perl 5 for platforms not expected to already have it installed, but installing modules with cpan requires other tools that might not be available, such as make. This script has no dependencies outside of the standard library, so it is hoped that it works on any platform that Git does without much trouble. Requires a git supporting C: 1.7.4 or later. =head1 BUGS/LIMITATIONS If a topic branch adds some lines in one commit and subsequently removes some of them in another, a hunk in the working directory that re-adds those lines will be assigned to fixup the first commit, and during rebasing they'll be removed again by the later commit. Not tested in F on Windows. Run it from Git Bash, Cygwin, or a similar Unix emulation environment. =head1 ACKNOWLEDGEMENTS F was inspired by a description of L in the L. While I was working on it I found L, by oktal3700, which was helpful to examine. =head1 COPYRIGHT AND LICENSE Copyright (C) 2017, Jordan Torbiak. This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License v2.0. =cut