Git on Windows

Download

https://git-scm.com/downloads

Create a ALIAS with Mingw64 on Windows
Creating a file name .bash_profile in C:/Users/YOUR_USER_NAME

# generated by Git for Windows
alias ll='ls -l'
alias ls='ls -F --color=auto --show-control-chars'
alias test='cd /C/test/git && ls'

alias git_my_info='git -c user.name=MY_NAME -c user.email=MY@MAIL.COM -c http.proxy="http://MY-PROXY:8080" '

alias git_my_info_no_proxy='git -c user.name=MY_NAME -c user.email=MY@MAIL.COM -c http.proxy="" '

Run git-bash in a batch file

start "" "C:\Program Files\Git\git-bash.exe" --login


Git bash on Windows XP

Install git bash version Git-2.5.0-32-bit.exe

https://mirrors-wan.geekpie.club/git-for-windows/

Loading