Skip to content

Instantly share code, notes, and snippets.

@LuRsT
Last active December 20, 2015 07:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuRsT/6096306 to your computer and use it in GitHub Desktop.
Save LuRsT/6096306 to your computer and use it in GitHub Desktop.
Add the alias fffuuuuuuuuu to git
#!/usr/bin/perl
use strict;
use warnings;
if ($ARGV[0] =~ /^f+uu+$/) {
print qx{git reset --hard HEAD^};
}
else {
my $args = join(' ', @ARGV);
print qx{git $args};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment