installing git in windows code example
Example 1: install git
# On Windows 10
https://git-scm.com/download/win
# Installing on Linux
sudo dnf install git-all
# on a Debian-based distribution, such as Ubuntu, try apt:
sudo apt install git-all
# On Mac
https://git-scm.com/download/mac
Example 2: download git for mac
$ brew install git
Example 3: install git
$ sudo apt install git-all
Example 4: git
git init
git add .
git commit -m "First commit"
git remote add origin "URL of repository"
git push --set-upstream origin master