Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.95 KB | None | 0 0
  1. # Drupal Contribution
  2. # Downloading Drupal Core 8.0.x
  3.  
  4. alias cloned8='git clone --branch 8.0.x http://git.drupal.org/project/drupal.git'
  5.  
  6. # Launching phpstorm
  7.  
  8. # Phpstorm
  9. alias phpstorm='sudo -b /Applications/PhpStorm.app/Contents/MacOS/phpstorm'
  10.  
  11. # Webform
  12. alias webstorm='/Applications/WebStorm.app/Contents/MacOS/webstorm'
  13. alias st='open -a /Applications/SourceTree.app/Contents/MacOS/SourceTree'
  14.  
  15.  
  16. # Manage files and folders
  17.  
  18. alias cp='cp -iv'
  19. alias mv='mv -iv'
  20. alias rm='rm -i'
  21. alias la='ls -alh'
  22. alias ll='ls -alh'
  23.  
  24. # Navigating the system
  25. alias documents='cd ~/Documents'
  26. alias downloads='cd ~/Downloads'
  27. alias desktop='cd ~/Desktop'
  28. alias music='cd ~/Music'
  29. alias videos='cd ~/Videos'
  30. alias ..='cd ..'
  31. alias ...='cd ../..'
  32. alias ....='cd ../../..'
  33.  
  34. # Git Aliases
  35. alias gs='git status '
  36. alias ga='git add '
  37. alias gb='git branch '
  38. alias gc='git commit'
  39. alias gd='git diff'
  40. #alias go='git checkout '
  41. alias gcm='git commit -m'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement