자바 수업 1일차(21.11.17)

S.KIOH·2021년 11월 17일
0

자바

목록 보기
1/9

내용 정리

자바 개발환경 만들기

Github다운로드 https://git-scm.com/

$ git init
$ git config --global user.name "[sko]"
$ git config --global user.email "[asdasd1990@naver.com]"
$ git status

$ git clone https://github.com/ShinKioh/java-study.git( 명령 프롬프트 칸에 넣고 실행)
eclipse vm 밑에  JDK-BIN 주소 추가 + \javaw.exe

JDK다운로드 https://blog.naver.com/drv98/222434912801

eclipse다운로드 https://www.eclipse.org/downloads/packages/

  • VSCODE 에서 README.md 라는 파일 생성
  • .gitignore 항목에
    (#)저장할 필요없는 파일이나 폴더를 지정
    .metadata/
    .settings/
    bin/
    .classpath/
    .project/
    (#)확장자 txt파일은 깃(git)으로 저장하지 않음
    *.txt
    추가할 것

git 주소

0개의 댓글