Git and Git Hub Introduction
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
GitHub is a development platform inspired by the way you work. From open source to business, you can host and review code, manage projects, and build software alongside 31 million developers.
In this tutorial, I have given an introduction of GIT and GitHub along with and setup on Windows. I also demonstrate that how to upload our repository on GitHub.
to download Git for windows click on below link
https://git-scm.com/download/win
Git Hub Sign In https://github.com/
Commands of GitHub
Step 1: check if GIT is already installed
git –version
Step 2: download and install git
Step 3: add your project to git
Step 4: Commands for Git
git init
git status
git add .*
git commit -m “Files Added”
git remote add origin https://github.com/yogeshdotnet/testrepository.git
git push -u origin master –force
For Complete demonstration, Please view the video below.