Skip to content

Commit

Permalink
Update aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Sep 4, 2018
1 parent 939bb63 commit 04b2e29
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ alias sites="cd $HOME/Sites"

# Laravel
alias a="php artisan"
alias ams="php artisan migrate:fresh --seed"

# Vagrant
alias v="vagrant global-status"
Expand All @@ -32,8 +33,8 @@ dbuild() { docker build -t=$1 .; }
dbash() { docker exec -it $(docker ps -aqf "name=$1") bash; }

# Git
alias commit="git commit -am"
alias gcommit="git commit -a"
alias commit="git add . && git commit -m"
alias gcommit="git add . && git commit"
alias gst="git status"
alias gc="git checkout"
alias gd="git diff"
Expand Down

0 comments on commit 04b2e29

Please sign in to comment.