-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
49 lines (40 loc) · 1.41 KB
/
.bash_profile
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
# GIT
alias gts="git status"
alias gsth="git stash"
alias gcm="git commit -m"
alias gal="git add --all"
alias gp="git push"
alias gl="git log"
alias gb="git branch"
alias gc='git checkout'
alias gcb='git checkout -b'
alias gd="git diff"
alias gm="git merge"
# SYMFONY
alias sfcc="php bin/console cache:clear"
alias sfad="php bin/console assetic:dump"
alias sfaw="php bin/console assetic:watch"
alias server="php bin/console server:run"
alias pbc="php bin/console"
# RACCOURCIS
alias www="cd /c/wamp64/www/"
alias undeces="cd /C/wamp64/www/undecesquatre/"
alias wiki="cd /C/wamp64/www/wikiDari/"
#CMD
alias ll='ls -l'
alias ls='ls -F --color=auto --show-control-chars'
# Release
alias release="if git-branch-is dev; then npm run release && git push && git checkout master && git merge dev && git push && cap rctint deploy && git checkout dev; fi"
alias dcp="docker-compose"
alias exe="docker exec -it"
alias sshome="ssh [email protected]"
alias ssmaster="ssh [email protected]"
alias k="kubectl"
alias lastTag="git describe --tags `git rev-list --tags --max-count=1`"
alias nvim="nvim -u ~/AppData/Local/nvim/init.nvim"
# tmux
alias tinv=". invoice_tmux.sh"
alias teul=". euler_tmux.sh"
# LIVRAISONS
alias patchrctint="git push && npm run release:patch && git push && git push --tags && git checkout rctint && git merge dev && git push"
alias patchrctext="git checkout rctext && git merge rctint && git push"