* Git tool & basics commands
* Data types & Variables
- Download git tool: https://git-scm.com/downloads
- git config --global user.name "githubUsername"
- git config --global user.email "youremail@gmail.com"
- git clone https://github.com/username/Repositoryname localFolderName
- git init
- git add .
- git commit -m "commitMessage"
- git branch -M main
- git add remote origin https://github.com/username/YourRepository.git
- git push -u origin main
- git add * (or single file which is updated)
- git commit -m "commit Message"
- git push -u origin master