Last active
April 29, 2017 07:02
-
-
Save chrislandeza/207478457a58ff8a4a91445c448fbd70 to your computer and use it in GitHub Desktop.
My git .bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Git | |
alias gs='git status' | |
alias ga='git add --all' | |
alias gc='git commit -m ' | |
alias gp='git push -u origin' #example: '$ gp branch-name' | |
alias nah='git reset --hard origin/master; git clean -fd' | |
#Composer | |
alias dump='composer dump-autoload' | |
#Laravel | |
alias migrate='php artisan migrate' | |
alias seed='php artisan db:seed' | |
alias refresh='php artisan migrate:refresh --seed' | |
alias tinker='php artisan tinker' | |
alias art='php artisan' | |
alias routes='php artisan route:list' | |
alias serve='php artisan serve' | |
#SVN | |
alias vs='svn status' | |
#General | |
alias s='ls -la' | |
alias c='clear' | |
alias x='exit' | |
alias subl='"/c/Program Files/Sublime Text 3/subl.exe"' | |
alias wamp='cd C:/wamp/www' | |
alias xampp='cd C:/xampp/htdocs' | |
#jigsaw | |
alias jigsaw="./vendor/bin/jigsaw " | |
#CD to project | |
alias reservation='cd C:xampp/htdocs/reservation-5.1' | |
alias autoit='cd C:xampp/htdocs/autoit' | |
alias mayo-clinic='cd C:/xampp/htdocs/mayo-clinic' | |
alias sbedev='cd C:/xampp/htdocs/sbedev' | |
alias mmu='cd C:/xampp/htdocs/mmu-ci' | |
alias slmcqw='cd C:/xampp/htdocs/slmcqw' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment