yum install git
Git for windows provides a bash and a gui.
It provides also all GNU core utility
For windows, select the Windows Native OpenSsh if you want to have the ssh-agent with forwarding
git config --global user.name "Gerardnico"
git config --global user.email [email protected]
where:
git config --global --get-regexp user
user.name Gerardnico
user.email [email protected]
:: Long path handling
git config --global core.longpaths true
:: No Windows EOL
git config --global core.autocrlf false
git config --global core.editor emacs
My latptop:
git config --global core.editor edgit.bat
Store your credential
git config --global credential.helper cache
git config --global credential.helper wincred
And optionally setup a few helpful aliases:
git config --global alias.st status
git config --global alias.ci commit
git config --global alias.up pull --rebase
You can now use the following command:
# Status
git st
# Commit
git ci
# Pull --rebase
git up
Automatic rebase
git config branch.autosetuprebase local