git cli download code example
Example 1: download git for mac
$ brew install git
Example 2: install git bash in ubuntu
$ sudo apt-get install install-info
Example 3: git
git init
git add .
git commit -m "First commit"
git remote add origin "URL of repository"
git push --set-upstream origin master
Example 4: latest version of git
/ we need to type both of them git fetch origin git reset --hard origin/master