github for windows code example

Example 1: github download

#Github
Direct Download: https://central.github.com/deployments/desktop/desktop/latest/win32
Website Download: https://desktop.github.com/

Example 2: 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 3: git

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