So, I\'ve installed Git, Git Bash, Python2.7, and I\'ve just installed the Google Cloud SDK per the official guide. Using Windows 10.
In cmd.exe, or the \"Google Cloud
Put the following in a .bashrc file which should be located in C:\Users\YourWindowsAccount:
gcloud() {
"gcloud.cmd" "$@"
}
export -f gcloud
Adapted from: https://askubuntu.com/a/98791
Restart Git Bash thereafter.
This solution is better than using aliases because it allows you to call gcloud from a shell script also.