How to push an existing Eclipse project to GitHub? The Next CEO of Stack OverflowFiles not...
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Whats the best way to handle refactoring a big file?
Visit to the USA with ESTA approved before trip to Iran
How do we know the LHC results are robust?
How easy is it to start Magic from scratch?
How can I quit an app using Terminal?
Why didn't Theresa May consult with Parliament before negotiating a deal with the EU?
How to use tikz in fbox?
Are there languages with no euphemisms?
Trouble understanding the speech of overseas colleagues
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Can I equip Skullclamp on a creature I am sacrificing?
Why do remote companies require working in the US?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
Only print output after finding pattern
Too much space between section and text in a twocolumn document
How should I support this large drywall patch?
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
Solution of this Diophantine Equation
Why here is plural "We went to the movies last night."
Why does GHC infer a monomorphic type here, even with MonomorphismRestriction disabled?
What is the difference between "behavior" and "behaviour"?
How to be diplomatic in refusing to write code that breaches the privacy of our users
How to push an existing Eclipse project to GitHub?
The Next CEO of Stack OverflowFiles not longer under version control, after refresh in Eclipse(eclipse) difference between import and create project on existing sourcehow to make automatic git mirror for hg repoFlash Builder taking over file associations on OS XEclipse for web developmentCannot rename eclipse projectHow to connect with Github repository in Eclipse?Git github not working with google authenticator OSXEclipse showing error for an android application in 'Package Explorer', but no error found anywhere in the codeEclipse IDE Git client pushing code to github and getting “deletion of the current branch prohibited”
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.
eclipse github
add a comment |
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.
eclipse github
add a comment |
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.
eclipse 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.
eclipse github
eclipse github
edited Apr 16 '17 at 17:12
Steven M. Vascellaro
4,6911853103
4,6911853103
asked May 12 '12 at 21:38
RoflcoptrExceptionRoflcoptrException
62681733
62681733
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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:
See also this tutorial to push your local project to that GitHub repo.
add a comment |
- Go to github create new repository
- Copy http URL from github
- Go to Eclipse --> Right click on project --> Team--> share project--> Create
new Git Repo. - Go to Git Staging--> add to index --> commit and push
- Right click on Git Repositories push to up stream
- Paste your http URL of githun which you copy in step 2
- Enter username and password of github -- > Finish
add a comment |
Also to the answer of VonC i have add the urls in text so if you need to do c&p:
remote name: origin
URI: git@github.com:wavemakerIsAwesome/MyAwesomeAppWavemaker.git
host: github.com
you can get this uri from git.hub in the repository that you must create :)
NOTE: I use the https connection, providing my git's username and password.
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f423792%2fhow-to-push-an-existing-eclipse-project-to-github%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
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:
See also this tutorial to push your local project to that GitHub repo.
add a comment |
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:
See also this tutorial to push your local project to that GitHub repo.
add a comment |
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:
See also this tutorial to push your local project to that GitHub repo.
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:
See also this tutorial to push your local project to that GitHub repo.
answered May 13 '12 at 11:59
VonCVonC
12k34044
12k34044
add a comment |
add a comment |
- Go to github create new repository
- Copy http URL from github
- Go to Eclipse --> Right click on project --> Team--> share project--> Create
new Git Repo. - Go to Git Staging--> add to index --> commit and push
- Right click on Git Repositories push to up stream
- Paste your http URL of githun which you copy in step 2
- Enter username and password of github -- > Finish
add a comment |
- Go to github create new repository
- Copy http URL from github
- Go to Eclipse --> Right click on project --> Team--> share project--> Create
new Git Repo. - Go to Git Staging--> add to index --> commit and push
- Right click on Git Repositories push to up stream
- Paste your http URL of githun which you copy in step 2
- Enter username and password of github -- > Finish
add a comment |
- Go to github create new repository
- Copy http URL from github
- Go to Eclipse --> Right click on project --> Team--> share project--> Create
new Git Repo. - Go to Git Staging--> add to index --> commit and push
- Right click on Git Repositories push to up stream
- Paste your http URL of githun which you copy in step 2
- Enter username and password of github -- > Finish
- Go to github create new repository
- Copy http URL from github
- Go to Eclipse --> Right click on project --> Team--> share project--> Create
new Git Repo. - Go to Git Staging--> add to index --> commit and push
- Right click on Git Repositories push to up stream
- Paste your http URL of githun which you copy in step 2
- Enter username and password of github -- > Finish
edited 1 hour ago
Community♦
1
1
answered Apr 20 '18 at 9:06
RamnathRamnath
112
112
add a comment |
add a comment |
Also to the answer of VonC i have add the urls in text so if you need to do c&p:
remote name: origin
URI: git@github.com:wavemakerIsAwesome/MyAwesomeAppWavemaker.git
host: github.com
you can get this uri from git.hub in the repository that you must create :)
NOTE: I use the https connection, providing my git's username and password.
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
add a comment |
Also to the answer of VonC i have add the urls in text so if you need to do c&p:
remote name: origin
URI: git@github.com:wavemakerIsAwesome/MyAwesomeAppWavemaker.git
host: github.com
you can get this uri from git.hub in the repository that you must create :)
NOTE: I use the https connection, providing my git's username and password.
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
add a comment |
Also to the answer of VonC i have add the urls in text so if you need to do c&p:
remote name: origin
URI: git@github.com:wavemakerIsAwesome/MyAwesomeAppWavemaker.git
host: github.com
you can get this uri from git.hub in the repository that you must create :)
NOTE: I use the https connection, providing my git's username and password.
Also to the answer of VonC i have add the urls in text so if you need to do c&p:
remote name: origin
URI: git@github.com:wavemakerIsAwesome/MyAwesomeAppWavemaker.git
host: github.com
you can get this uri from git.hub in the repository that you must create :)
NOTE: I use the https connection, providing my git's username and password.
edited Mar 20 '17 at 10:17
Community♦
1
1
answered May 28 '15 at 19:44
Enrique San MartínEnrique San Martín
1013
1013
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
add a comment |
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
1
1
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
Hey and welcome to Super User! If you have anything to add to another user's answer, you can propose an edit to his answer or comment on it. There's no need to a separate answer as I see the situation here.
– matan129
May 28 '15 at 21:51
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f423792%2fhow-to-push-an-existing-eclipse-project-to-github%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown