How to push an existing Eclipse project to GitHub?

Currently I’m developing some applications that I want to share with the community using GitHub.

I’ve found a lot of tutorials on how to create a GitHub repository from scratch, but I couldn’t find one for sharing an existing Eclipse project. I would prefer a solution that works inside Eclipse using a GUI.

Answer

You can follow this user guide section of git push (to a GitHub repo), adding a remote with the ssh address of your GitHub repo:

GitHub Egit ssh

See also this tutorial to push your local project to that GitHub repo.

Attribution
Source : Link , Question Author : RoflcoptrException , Answer Author : VonC

Leave a Comment