Answers for "git bash alias commands"

4

git bash alias commands

Follow below steps:
a) Open the file .bashrc which is found in location C:\Users\USERNAME\.bashrc

If file .bashrc not exist then create it using below steps:
1. Open Command Prompt and goto C:\Users\USERNAME\.
2. Type command notepad ~/.bashrc
It generates the .bashrc file.

b) Add below sample commands of WP CLI, Git, Grunt & PHPCS etc.

# ----------------------
# Git Command Aliases
# ----------------------
alias ga='git add .'
alias gaa='git add .'
alias gaaa='git add --all'

# ----------------------
# WP CLI
# ----------------------
alias wpthl='wp theme list'
alias wppll='wp plugin list'
Posted by: Guest on October-03-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language