summarylogtreecommitdiffstats
path: root/emacs-magit-gitflow.install
blob: c9968b104b120e28e25fdaeaed101a992dd5fc05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install () {

cat << EOF

==> Add this code to your .emacs file to use the mode:

(require 'magit-gitflow)
(add-hook 'magit-mode-hook 'turn-on-magit-gitflow)

==> Or do the above with use-package:

(use-package magit-gitflow
  :config
  (add-hook 'magit-mode-hook 'turn-on-magit-gitflow))

EOF
}

post_upgrade () {
	post_install $1
}