summarylogtreecommitdiffstats
path: root/git-interactive-rebase-tool.install
diff options
context:
space:
mode:
Diffstat (limited to 'git-interactive-rebase-tool.install')
-rw-r--r--git-interactive-rebase-tool.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/git-interactive-rebase-tool.install b/git-interactive-rebase-tool.install
new file mode 100644
index 000000000000..ae37701bf6f0
--- /dev/null
+++ b/git-interactive-rebase-tool.install
@@ -0,0 +1,13 @@
+post_install() {
+ echo ""
+ echo "Configure git to use the rebase tool:"
+ echo "git config --global sequence.editor interactive-rebase-tool"
+ echo ""
+}
+
+post_remove() {
+ echo ""
+ echo "You have to remove the tool from the git configuration:"
+ echo "git config --global --unset sequence.editor"
+ echo ""
+}