Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 334105

Summary: e4 source code download is not working thorugh CSV and git repository
Product: [Technology] XWT Reporter: ramakant <ramakant22>
Component: CoreAssignee: Project Inbox <e4.xwt-inbox>
Status: RESOLVED WORKSFORME QA Contact:
Severity: normal    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: Other   
OS: Windows XP   
Whiteboard:

Description ramakant CLA 2011-01-12 08:58:50 EST
Build Identifier:  M20100909-0800

I am trying to download the eclipse source code but couldnt success. I have followed CSV repository link as well as the git link but both the places getting error.
1. At CSV repository we are getting timeed out exception
ERROR: couldnot connect to :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
Cannot connect to host: Connection timed out: connect
2. When i tried to download the source code from git its throwing error:
ERROR: $ git checkout git://dev.eclipse.org/org.eclipse.e4/org.eclipse.e4.xwt.git
fatal: Not a git repository (or any of the parent directories): .git

I am using Version: 3.6.1
Build id: M20100909-0800 "helios" for CSV pserver source code download. 

Please help us and provide a way to download the source code.

Reproducible: Always

Steps to Reproduce:
1. Try to connect to csv repository by giving following information:
Host : dev.eclipse.org 
Repository Paths : /cvsroot/eclipse 
User : anonymous 
Password : (leave blank) 
Connection Type : pserver

2. try to checkout from git repository:
$ git checkout -- git://dev.eclipse.org/org.eclipse.e4/org.eclipse.e4.xwt.git
fatal: Not a git repository (or any of the parent directories): .git
3.
Comment 1 Paul Webster CLA 2011-01-12 09:06:44 EST
1) your business and/or firewall might be blocking pserver access.  Your information is correct, and I just tried it in a clean workspace and expanded the repo>HEAD.

2) you are doing a checkout, which is wrong (it's a local repo operation in git).  You need to clone:
git clone git://dev.eclipse.org/org.eclipse.e4/org.eclipse.e4.xwt.git


Please use the newsgroup/forums for questions like this: http://www.eclipse.org/forums/

PW