summarylogtreecommitdiffstats
path: root/git-interactive-rebase-tool.install
blob: e59b496946ea4935d97d38bfe573ca2f0a21ed0f (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 "Remember to remove the tool from the git configuration:"
  echo "git config --global --unset sequence.editor"
  echo
}