Gatling Beginner Tutorial 9 | Add project to Git |

Опубликовано: 24 Июль 2026
на канале: Automation Step by Step
4,757
32

Free Tutorials - https://automationstepbystep.com/
00:00 Introduction
01:05 Check Git is installed
01:13 Download Git
01:36 Open Git Bash or CMD and navigate to project folder location
01:50 Git Commands
02:45 Create repository on GitHub
03:09 Commit & Push

My GitHub Project - https://github.com/Raghav-Pal/Gatling...

Notes:

Git Setup on Local System:
Step 1 : check if git is already installed
git --version
Step 2 : download Git installer from https://git-scm.com/
Step 3 : Run installer and install git
Step 4 : Check if git is installed git --version

Create GitHub Account:
Step 1 : Goto https://github.com/ and sign up
Step 2 : Login to GitHub
Step 3 : Create a new Repository

Git Commands

Step 1 : Create a new folder and open Git Bash/CMD and goto the folder location
Step 2 : Run Commands
git config --global user.email "[email protected]"
git config --global user.name "yourGitHubusername"
Step 3 : Initialize Git git init
Step 4 : Add some files in the folder
Step 5 : Run commands git status
git add
git commit -m “…..”
Step 6 : Add the remote repo url
git remote add origin url_of_hithub_repo
Step 7 : Push the changes to repository git push -u origin master
Step 8 : Check output of following commands
git log
git --help

#GatlingBeginnerTutorials
_____________________________________________________________

Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you

You can support my mission for education by sharing this knowledge and helping as many people as you can

If my work has helped you, consider helping any animal near you, in any way you can.

Never Stop Learning
Raghav