blob: a749d4247da9e480146643c902b4554c3855a8c9 [file] [log] [blame]
Erich Smith17aaa9c2012-05-21 23:52:47 -04001cite 'about-alias'
2about-alias 'heroku task abbreviations'
zerobearing23802bcc2010-10-06 17:42:29 -07003
4# heroku
5alias h='heroku'
6alias hl='heroku list'
7alias hi='heroku info'
8alias ho='heroku open'
9
10# dynos and workers
11alias hd='heroku dynos'
12alias hw='heroku workers'
13
14# rake console
15alias hr='heroku rake'
16alias hcon='heroku console'
17
18# new and restart
19alias hnew='heroku create'
20alias hrestart='heroku restart'
21
22# logs
23alias hlog='heroku logs'
24alias hlogs='heroku logs'
25
26# maint
27alias hon='heroku maintenance:on'
28alias hoff='heroku maintenance:off'
29
30# heroku configs
31alias hc='heroku config'
32alias hca='heroku config:add'
33alias hcr='heroku config:remove'
34alias hcc='heroku config:clear'