Programmer
Programmer

Reputation: 455

Error to Import Github project into Eclipse?

I am trying to import Github Project into my eclipse by Egit and used the URI,Host etc as you can check in Screen shot and when i am giving my github userId/Password i am getting error see attached screen shot GitHubExceptin or this exception.

 https://github.com:22/michaelisvy/hibernate-4-spring-3.1-samples: cannot open git-upload-pack:
https://github.com:22/michaelisvy/hibernate-4-spring-3.1-samples: cannot open git-upload-pack

Is i am doing something wrong ? Or we can not import someone else project like this?
Git Values

Upvotes: 3

Views: 2367

Answers (2)

Himanshu
Himanshu

Reputation: 378

you can do it command prompt.

git clone git@github.com:michaelisvy/hibernate-4-spring-3.1-samples.git
cd hibernate-4-spring-3.1-samples
mvn eclipse:eclipse

this is for eclipse.

http://www.vogella.com/articles/EGit/article.html#github

Upvotes: 0

Jordan
Jordan

Reputation: 153

Remove ":22" add .git to your repo path ?

Upvotes: 6

Related Questions