23
How to install and configure Git on Windows OS ?
I will also soon be publishing it on GeeksforGeeks



Leave the installation location on default and click on Next.
Leave the installation components on default and click on Next.
Set up will create the program's shortcut in a Start Menu folder. Click Next.
Open the drop-down menu to select a text editor of your choice. I have chosen VS Code here.
Set up for Git to name the branch after "git init". Leave it on default.
Adjusting your path environment - Select the recommended option.
The next option relates to server certificates. If you’re working in an Active Directory environment, you may need to switch to Windows Store certificates. Click Next.
Configuring the line ending conversions : Recommended to select the default option.
Choose the terminal emulator you want to use. The default MinTTY is recommended, for its features. Click on Next.
mkdir test

cd test

git init


clear

You can learn Git commands from the resources in my blog below
👇
git config --global user.name "Your-Full-Name-here"

git config --global user.email "your-email-address-here"

git config --list
git config --global core.editor "code --wait"

git config --global core.editor "'C:/Program Files/Sublime Text 2/sublime_text.exe' -n -w"

git config --global core.editor "atom --wait"

✅ You've configured Git with username and email.
✅ You've configured Git to your chosen editor.
My twitter