Skip to content

Instantly share code, notes, and snippets.

@dutymess
Last active February 20, 2019 12:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dutymess/1cf276f4cf6b4c65282d4c6691cfbc3a to your computer and use it in GitHub Desktop.
Save dutymess/1cf276f4cf6b4c65282d4c6691cfbc3a to your computer and use it in GitHub Desktop.
My Bash Aliases
## General Things
## -------------------
alias ip="ipconfig getifaddr en0"
alias ipx="curl ipecho.net/plain; echo"
## Git Things
## -------------------
## git status
alias gits="git status"
## normal branch creation
alias gitb="git checkout -b "
## push shortcut
function gpush() {
current=`git branch | grep \* | cut -d ' ' -f2`
git checkout dev
git pull
git checkout $current
git merge dev -m "merge branch dev into $current"
git push origin $current
}
## normal commit with a custom message
alias commit="git commit -m "
## stage all changes and commit with a custom message
alias commita="git add . && git commit -m "
## ammend all staged changes
alias amend="git commit --amend --no-edit"
## ammend all staged and unstaged changes
alias amenda="git add . && git commit --amend --no-edit"
## to delete all git branches, other than "master" and "dev" (might be unsafe, but works fine for me)
alias gdel="git branch | grep -v "master" | grep -v "dev" | xargs git branch -D"
## to discard unstaged changes, checkout "dev" branch and pull from the origin
alias gdev="git checkout . && git checkout dev && git pull"
## to do the above command and immediately make a branch
alias gb="gdev && git checkout -b "
## Laravel Things
## -------------------
## php artisan
alias a="php artisan"
alias art="php artisan"
## tinker
alias tinker="php artisan tinker"
alias t="php artisan tinker"
## run test
alias 'tt'='vendor/bin/phpunit'
## Special for YasnaCMS Contributers
## ---------------------
alias 'list'='php artisan yasna:list'
alias 'list-'='php artisan yasna:list -a'
## to open github on the provided issue number
function hub() {
open "https://github.com/mhrezaei/yasna-core/issues/$1"
}
## to change database and quickly init the project
function db() {
if [ "$1" != "" ]; then
./env DB_DATABASE "$1";
./i
else
./env DB_DATABASE;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment