-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabbreviations.fish
144 lines (126 loc) · 3.85 KB
/
abbreviations.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# Apache
abbr a2reload 'sudo service apache2 reload'
abbr a2restart 'sudo service apache2 restart'
# Artisan
abbr a 'php artisan'
# Apt-Get
abbr ar 'sudo apt-get autoremove'
abbr dug 'sudo apt-get dist-upgrade'
abbr i 'sudo apt-get install'
abbr r 'sudo apt-get remove'
abbr u 'sudo apt-get update'
abbr ug 'sudo apt-get upgrade'
# Bower
abbr b 'bower'
abbr bi 'bower install --save'
abbr bp 'bower prune'
abbr bu 'bower update'
# Brew Cask
abbr bci 'brew cask install'
abbr bcu 'brew cask uninstall'
abbr bcs 'brew cask search'
# Composer
abbr c 'composer'
abbr ci 'composer install'
abbr cr 'composer require'
abbr crd 'composer require --dev'
abbr csu 'sudo composer self-update'
abbr cu 'composer update'
abbr cv 'composer validate'
# Git
abbr g 'git'
abbr ga. 'git add .'
abbr ga 'git add'
abbr gb 'git branch'
abbr gbd 'git branch -D'
abbr gcm 'git commit -m'
abbr gcm!!! 'git add .; and git commit -m "Update"; and git push'
abbr gco 'git checkout'
abbr gcob 'git checkout -b'
abbr gcod 'git checkout development'
abbr gi 'gitignore'
abbr gm 'git merge'
abbr gpl 'git pull'
abbr gps 'git push'
abbr gpsu 'git push -u origin master'
abbr gs 'git status'
abbr gc 'git clone'
abbr gd 'git diff'
# <a href="https://github.com/petervanderdoes/gitflow-avh">Git Flow AVH</a>
abbr gf 'git flow'
abbr gfi 'git flow init -d'
abbr gff 'git flow feature'
abbr gffs 'git flow feature start'
abbr gfff 'git flow feature finish'
abbr gffp 'git flow feature publish'
abbr gfft 'git flow feature track'
abbr gffco 'git flow feature checkout'
abbr gfr 'git flow release'
abbr gfrs 'git flow release start'
abbr gfrf 'git flow release finish'
abbr gfrp 'git flow release publish'
abbr gfrt 'git flow release track'
abbr gfrco 'git flow release checkout'
abbr gfb 'git flow bugfix'
abbr gfbs 'git flow bugfix start'
abbr gfbf 'git flow bugfix finish'
abbr gfbp 'git flow bugfix publish'
abbr gfbt 'git flow bugfix track'
abbr gfbco 'git flow bugfix checkout'
abbr gfh 'git flow hotfix'
abbr gfhs 'git flow hotfix start'
abbr gfhf 'git flow hotfix finish'
abbr gfhp 'git flow hotfix publish'
abbr gfht 'git flow hotfix track'
abbr gfhco 'git flow hotfix checkout'
# LS
abbr l 'ls'
# NPM
abbr ni 'npm install'
abbr nis 'npm install --save'
abbr nisd 'npm install --save-dev'
abbr nig 'npm install -g'
abbr np 'npm prune'
abbr nl 'npm list'
abbr nr 'npm remove'
abbr nu 'npm update'
# RM
abbr rmrf "rm -rf"
# Symfony 2.x
abbr s2 'php app/console'
abbr s2cc 'php app/console cache:clear'
abbr s2ccp 'php app/console cache:clear --env=prod'
abbr s2cct 'php app/console cache:clear --env=test'
abbr s2gb 'php app/console generate:bundle'
abbr s2gc 'php app/console generate:controller'
abbr s2dge 'php app/console doctrine:generate:entity'
abbr s2dsc 'php app/console doctrine:schema:create'
abbr s2dsu 'php app/console doctrine:schema:update'
abbr s2dsv 'php app/console doctrine:schema:validate'
abbr s2ddc 'php app/console doctrine:database:create'
# Symfony 3.x
abbr s 'php bin/console'
abbr scc 'php bin/console cache:clear'
abbr sccp 'php bin/console cache:clear --env=prod'
abbr scct 'php bin/console cache:clear --env=test'
abbr sgb 'php bin/console generate:bundle'
abbr sgc 'php bin/console generate:controller'
abbr sdge 'php bin/console doctrine:generate:entity'
abbr sdsc 'php bin/console doctrine:schema:create'
abbr sdsu 'php bin/console doctrine:schema:update'
abbr sdsv 'php bin/console doctrine:schema:validate'
abbr sddc 'php bin/console doctrine:database:create'
# Vagrant
abbr v 'vagrant'
abbr vu 'vagrant up'
abbr vs 'vagrant ssh'
abbr vp 'vagrant provision'
abbr vr 'vagrant reload'
abbr vrp 'vagrant reload --provision'
abbr vh 'vagrant halt'
# Other
abbr pg 'pgrep -l'
abbr psg 'ps -ef | grep'
abbr ccat 'pygmentize -g'
abbr add_to_path 'set -U fish_user_paths $fish_user_paths'
abbr freebox_mount 'sudo mount -t cifs //mafreebox.freebox.fr/Disque\\ dur /media/freebox -o user=freebox,uid=1000,gid=1000,rw,password='