How to Push your local Project from eclipse to Github II Step by Step process II DevOps

Опубликовано: 29 Май 2026
на канале: Knowledge Share
277
7

In this session you will learn how to push your local project or code to Github or any Repository

==================================================
Steps to follow
==================================================
Step 1 : Create GitHub Account ( visit below link to create GitHub account )
https://github.com/

Step 2 : Create Repository in GitHub

Step 3 : Download git in your system https://git-scm.com/downloads

Step 4 : Use below commands to push code to your repository
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/github-account-nam...
git push -u origin main