일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tomcat
- R
- 공정능력
- Express
- plugin
- xPlatform
- Eclipse
- NPM
- SQL
- Java
- react
- Sqoop
- GIT
- Kotlin
- 보조정렬
- Android
- SPC
- hadoop
- vaadin
- es6
- MSSQL
- Python
- SSL
- window
- IntelliJ
- table
- Spring
- mybatis
- JavaScript
- mapreduce
- Today
- Total
목록intellij (29)
DBILITY
intellij를 사용하는데, 어쩌다 보니 프로젝트명도 바꾸고 디렉토리명도 바꾸고 하다가 git repository(.git)을 삭제하게 되었다. tortoise git ide만 쓰다보니 명령어로 생성하는 건 기억도 나지 않는다. 생성하고자 하는 디렉토리내에서 git init → git add . → git commit -m "init" 입력하면 된다. 자세한 내용들은 다음을 참고하자. https://git-scm.com/book/ko/v2/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-%EC%A0%80%EC%9E%A5%EC%86%8C-%EB%A7%8C%EB%93%A4%EA%B8%B0 Git - Git 저장소 만들기 2.1 Git의 기초 - Git 저장소 만들기 Git을 사용하는 방법을..
You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app The latest instructions for creating a new app can be found here: https://create-react-app.dev/docs/gettin..
이거 보고 광고 한번 안 누른 이는 삼대가 재수 없을지어다!ㅋㅋ 누르고 복권을 사라! eclipse에선 그냥 pom에 포함시키면 됐던 것 같은데, intellij ( 사용버전 IntelliJ IDEA 2021.3.2 (Ultimate Edition) )는 그렇지 않았다.. dependancy를 추가하고, spring initializr에서 선택할 수 있다. org.springframework.boot spring-boot-devtools runtime true application.properties에 spring.devtools.livereload.enabled=true intellij setting에서 다음 그림 1,2와 같이 처리한다.
project생성 후 .idea를 제외하기 위해 .gitignore에 추가해도 동작이 이상할 때가 있었다. 다음과 같이 조치하였다. 물론 구글링을 통해 알게 되었음. git rm -r --cached . git add . git commit -m "gitignore reconfigure"