Advertisement
Guest User

Untitled

a guest
Apr 20th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #Daniel Aranda aliases
  2. #This is thinking for me as shortcut of the commands I use more, I do not mind to share it public to
  3. #bring ideas.
  4.  
  5. #Git status short version and include the current branch name
  6. alias gs="git status -s -b"
  7.  
  8. #Git add to stage all modified files also deleted files
  9. alias gadd="git add . && git add -u .;"
  10.  
  11. #Shorthand to git commit with message, you should pass the message
  12. alias gcom="git commit -m "
  13.  
  14. alias gpus="git push origin"
  15. alias gpul="git pull origin "
  16. alias gch="git checkout"
  17.  
  18. #Composer installed locally, these are just shortcuts
  19. alias lcomposer="php composer.phar"
  20. alias lphpunit="vendor/bin/phpunit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement