일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- AJAX
- Core Java
- JDBC
- Exception
- 설정
- Docker
- Spring Boot
- Python
- Open Source
- Thymeleaf
- MSSQL
- Tomcat
- MySQL
- SpringBoot
- JavaScript
- STS
- spring
- git
- jpa
- ubuntu
- 오픈소스
- maven
- Eclipse
- 문서
- IntelliJ
- error
- oracle
- myBatis
- Source
- PostgreSQL
- Today
- Total
헤르메스 LIFE
[Ubuntu] Ubuntu에 IntelliJ 설치 하기 ( feat. Github 프로젝트 Clone ) 본문
Ubuntu에 IntelliJ 를 설치 했습니다.
https://www.jetbrains.com/ko-kr/idea/download/?section=linux
최고의 Java 및 Kotlin IDE인 IntelliJ IDEA를 다운로드하세요
www.jetbrains.com
1. tar 버전( 압축파일 ) 설치
즐겨찾기에 추가가 어려움. ( Linux를 사용한지 얼마안되서 추가할 줄 모릅니다. )
# ideaIU-2023.3.4.tar.gz 파일을 다운로드 받았습니다.
# 압축을 풉니다.
$ tar -xvf ideaIU-2023.3.4.tar.gz
# User HOME 폴더로 이동
$ mv ideaIU-2023.3.4 ~/
# ideaIU 폴더로 이동
$ cd ~/ideaIU-2023.3.4/idea-IU-233.14475.28/bin
# IntelliJ 실행
$ ./idea.sh
2. Ubuntu Ultimate 버전 ( Ubuntu Software 에서 설치 )
즐겨찾기에 추가할 수 있습니다.
3. 설정
# worksapce 생성
$ cd ~/ideaIU-2023.3.4
$ mkdir workspace
# worksapce 이동
$ cd workspace
# Global 사용자 등록
# 각 컴퓨터 마다 다른 것이 좋을 것 같음. 그래야 어디서 commit 했는지 알 수 있으니까...
$ git config --global user.name '커밋터이름'
# Global Email 등록
$ git config --global user.email '이메일주소'
# 기본 설정. 시스템에서 line ending 을 처리하는 방법에 따른다.
# windows에서는 CRLF 를 사용하고 Linux, OS X 는 LF 만 사용한다.
$ git config --global core.eol native
# 경고 메시지를 off 시키고 작업
$ git config --global core.safecrlf false
# Global 설정확인
$ git config --global --list
#
$ mkdir ~/worksapce
$ cd ~/workspace
# Git Clone
# git clone Git서버주소
$ git clone https://github.com/hermeswing/SimpleMyBatis.git
https://hermeslog.tistory.com/685
[Git] Git 명령어
사용하는 Git 명령어를 정리해봤습니다. 계속 수정 변경해서 추가할 예정입니다. # 전역 사용자 등록 $ git config --global user.name 'hermeswing' # 전역 사용자 이메일 등록 $ git config --global user.email 'hermeswi
hermeslog.tistory.com
https://hermeslog.tistory.com/443
[IntelliJ] 설정들
https://hermeslog.tistory.com/536 [IntelliJ] 설정들 #2 https://hermeslog.tistory.com/443 > [Settings] >> [Plugins] > lombok 설치 1-2. Enable annotation processing 체크 1-3. 단축키 ( Alt + Ins ) Getter, Setter 뿐만 아니라, Cons.." data-og-hos
hermeslog.tistory.com
https://hermeslog.tistory.com/536
[IntelliJ] 설정들 #2
https://hermeslog.tistory.com/443 [IntelliJ] 설정들 1. Getter, Setter 자동 생성 1-1. lombok Plugin 설치 [File] >> [Settings] >> [Plugins] > lombok 설치 1-2. Enable annotation processing 체크 1-3. 단축키 ( Alt + Ins ) Getter, Setter 뿐만
hermeslog.tistory.com
https://hermeslog.tistory.com/425
[IntelliJ] Plugins
1. lombok ( 이젠 default 설치됨 ) plugins.jetbrains.com/plugin/6317-lombok 2. .ignore - Git 사용 시 Ignore 폴더 / 파일을 설정할 수 있음. plugins.jetbrains.com/plugin/7495--ignore 3. Git ToolBox - 요즘엔 Git ToolBox ( https://plugins.j
hermeslog.tistory.com