Skip to content

Latest commit

 

History

History
105 lines (53 loc) · 3.65 KB

GETTING_STARTED.md

File metadata and controls

105 lines (53 loc) · 3.65 KB

참여 방법


환경 : 이클립스 기준

Git Clone
프로젝트 생성
src 폴더가 아닌 개인 폴더(boj폴더)에서 Build 하기
빌드테스트


GIt Clone 하기

1. 공용 저장소 > Fork

Untitled (20)

2. 본인 레퍼지토리 > url 복사

  • 꼭 fork한 본인 레퍼지토리를 clone 해야, 본인 github의 잔디를 심을 수 있다.
Untitled (21)

3. workspace 우클릭 > 터미널 열기

Untitled (22)

4. 터미널 입력

git clone [https://github.com/{본인 ID}/algorithm.git](https://github.com/SSAFY-10th-Seoul17/algorithm.git) Untitled (23)

5. Git Clone 완료 화면

Untitled (24)

프로젝트 생성

6. 이클립스 워크스페이스 지정

Untitled (25)

7. New > Java Project

Untitled (26)

8. 프로젝트 이름 : 본인 아이디

Untitled (27)

src 폴더가 아닌 개인 폴더(boj폴더)에서 Build 하기

이클립스는 기본적으로 src 폴더 아래에서 build가 된다.

9. src 폴더 삭제 > 프로젝트 밑 > 폴더생성 > boj (백준)

Untitled (28)

10. 프로젝트 우클릭 > Properties

Untitled (29)

11. Java Build Path > Add Folder

Untitled (30)

12. boj폴더 체크

Untitled (35)

13. 완료 페이지

Untitled (31)

빌드 테스트

14. boj폴더 우클릭 > New > class

Untitled (32)

15. pakage name 제거 , public static void main 체크

Untitled (33)

16. Hello world !

Untitled (34)