How to Install Gitbash and push , pull code into the gitlab on Windows (From Scratch)

******** How to Install Gitbash and push, pull code into the gitlab ************** Requirements: 1. Download Gitbash From Official website https: //gitforwindows.org/ Steps: 1 Create Project On Gitlab Account 2. Clone repository to local using gitbash 3. Create file on local and push to the gitlab Commands: 1. git init 2. git config --global user.name "YOUR GITLAB USERNAME" 3. git config --global user.email "YOUR GITLAB EMAIL_ID" 4. git config --list 5. git remote add origin "COPY_URL_FROM REPO" 6. git remote 7. git clone "COPY_URL_FROM_REPO" 8. cd "PROJECT_NAME" 9. vi demofile.txt Hello Guys, How are you 10. ls 11. git status 12. git add . 13. git status 14. git commit -m "GIVE MESSAGE HERE" 15. git status 16. git push origin main 17. git pull origin main