Skip to content

Instantly share code, notes, and snippets.

@edysmp
Last active November 25, 2025 10:23
Show Gist options
  • Select an option

  • Save edysmp/e72a73876621aa20210fd79ad95232b1 to your computer and use it in GitHub Desktop.

Select an option

Save edysmp/e72a73876621aa20210fd79ad95232b1 to your computer and use it in GitHub Desktop.
DDEV and onther bash aliases.
#ALIASES
alias desc="ddev describe"
alias start="ddev start"
alias stop="ddev stop"
alias i="ddev composer install"
alias r="ddev composer require"
alias uli="ddev drush uli"
alias cex="ddev drush cex"
alias cim="ddev drush cim"
alias cr="ddev drush cr"
alias en="ddev drush en"
alias dis="ddev drush pmu"
alias si="ddev drush sql-drop -y && ddev drush si -y"
alias updb="ddev drush updb"
alias st="git status"
alias ca="git diff --staged"
alias di="git diff"
alias rest="git restore --staged"
alias res="git restore"
#END_ALIASES
@edysmp
Copy link
Author

edysmp commented Sep 5, 2023

It also works for .zshrc MACOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment