Answers for "git version windows"

4

git version

git --version 
git version 2.7.4
Posted by: Guest on August-24-2021
2

Setup git on windows

$ git config --global user.name <username> # eg git config --global user.name "Jane Doe"
$ git config --global user.email <email-address> # eg git config --global user.email "[email protected]"
$ git config --global core.editor "code --wait"
$ git config --global init.defaultBranch main
$ git config --global core.autocrlf true
Posted by: Guest on May-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language