Git Install & Usage
Git Installation
Download Git
Select the following options in each installation window:











Click the Install button.
Git usage (common commands)
Right-click on the repository root folder add select ‘Git Bash Here’.
To see new files or modified files:
git statusTo create a new git repository:
git initTo stage files:
git add .To commit files:
git commit -m "Initial commit"To set remote GitHub repo url:
git remote add origin <path to repo>To push files to GitHub repo:
git push origin master