250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- Tomcat
- PostgreSQL
- SpringBoot
- Open Source
- Thymeleaf
- oracle
- MSSQL
- ubuntu
- spring
- Eclipse
- Docker
- AJAX
- 문서
- Exception
- MySQL
- error
- IntelliJ
- Spring Boot
- 오픈소스
- JDBC
- JavaScript
- Python
- Core Java
- jpa
- Source
- myBatis
- maven
- STS
- 설정
- git
Archives
- Today
- Total
헤르메스 LIFE
[Ubuntu] Ubuntu에 IntelliJ 설치 하기 ( feat. Github 프로젝트 Clone ) 본문
728x90
Ubuntu에 IntelliJ 를 설치 했습니다.
https://www.jetbrains.com/ko-kr/idea/download/?section=linux
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
https://hermeslog.tistory.com/443
https://hermeslog.tistory.com/536
https://hermeslog.tistory.com/425
728x90