git download windows code example

Example 1: install git ubuntu

$ sudo apt install git

Example 2: download git for mac

$ brew install git

Example 3: download git for windows

Downloading git setup.exe 32 bit -version copy the link below 
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/Git-2.31.1-32-bit.exe

Downloading git setup.exe 64 bit version -version copy the link below 
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/Git-2.31.1-64-bit.exe

Downloading git portable -version 32 bit copy the link below
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/PortableGit-2.31.1-32-bit.7z.exe

Downloading git portable -version 64 bit copy the link below
https://github.com/git-for-windows/git/releases/download/v2.31.1.windows.1/PortableGit-2.31.1-64-bit.7z.exe

Example 4: Git

Git is a distributed version-control system for tracking changes in source
code during software development.

It is designed for coordinating work among programmers, but it can be used to
track changes in any set of files.

Its goals include speed, data integrity, and support for distributed,
non-linear workflows.

Example 5: install git bash in ubuntu

$ sudo apt-get install install-info

Example 6: git

git init
git add . 
git commit -m "First commit"
git remote add origin "URL of repository"
git push --set-upstream origin master

Tags:

Misc Example