More tools and improvements

Signed-off-by: Jacob Kiers <kiers@comandi.nl>
This commit is contained in:
Jacob Kiers
2017-12-08 18:36:39 +01:00
parent 4b36c35285
commit 2755650734
12 changed files with 334 additions and 12 deletions

5
bin/git-fixup Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
set -e
TARGET=$(git rev-parse ${1})
git commit --fixup=${TARGET} ${@:2}
EDITOR=true git rebase -i --autostash --autosquash ${TARGET}^;