Created
September 7, 2017 16:58
-
-
Save mihaiparaschiv/a31a07fd81653c7ac62a256f1f58c292 to your computer and use it in GitHub Desktop.
Git Bash bootstrap for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo Executing .profile | |
source /d/env-tools/bash-setup.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gcloud="\"/c/Users/Mihai/AppData/Local/Google/Cloud SDK/google-cloud-sdk/bin/gcloud.cmd\"" | |
alias gsutil="\"/c/Users/Mihai/AppData/Local/Google/Cloud SDK/google-cloud-sdk/bin/gsutil.cmd\"" | |
git-log() { git log --oneline --decorate --graph --all "$@" ; } | |
docker-setup() { eval `docker-machine env $1` ; } | |
run-make() { winpty bash /d/dev/make/run-make.sh "$@" ; } | |
dmssh() { ssh -t -i ~/.docker/machine/machines/default/id_rsa docker@$(docker-machine ip default) "$@" ; } | |
# export GREP_OPTIONS='--color=auto' | |
export MSYS_NO_PATHCONV=1 | |
echo "Bash setup complete" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment