summarylogtreecommitdiffstats
path: root/git-interactive-rebase-tool.install
blob: ae37701bf6f0637419cbbbd7601aaeb9921741f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 ""
}