라벨이 intellij인 게시물 표시

git merge conflict(머지 충돌) resolve(해결)한 사람찾는 법. 원래 커밋한 사람(A)이 아닌, B가 특정커밋 수정하여 push한 경우. B찾는 법

experience 가끔 있는 이슈이긴 하지만, 한동안 발생을 하지 않아 잊고 있었다가... 다시 merge(rebase)충돌 해결이 잘못되어 push된 경우, 이를 detecting하는 방법을 검색하게 됨...  ​ ​ 1. push hook을 걸어 특정 commit을 push한 사람이 누구인지 찾는 법... (hook걸기 귀찮아서... hook까지 만든 경험은 X) ​ 2. 간단히 아래와 같은 git show 명령으로 가능.. (pretty 옵션의 fuller를 하게되면 author 및 commiter까지 조회가능) * author: original comiiter * commiter: 추가 변경을 가한 commiter ​ git show <revision_number> --pretty=fuller ​ 3. intellij의 경우, 버전업이 되면서 해당 revision에 커서를 올리면 author와 함께 committed by ... 으로 변경을 가한 committer 조회 가능 ​ from: https://git-scm.com/docs/git-show

intellij 특정 폴더(디렉토리) 또는 파일을 검색 및 색인(indexing)에서 제외 시키는 법

experience maven node plugin을 이용한 프로젝트를 intellij에서 개발 * npm 빌드를 위한 node_modules 폴더를 검색 및 indexing에서 제외 시키고자 하는 니즈... File > Project Structure... > Modules > Sources > 제외하고자 하는 폴더 우클릭 > Excluded

intellij text 검색(find in path)이 안되는(정상적이지 않은)현상

experience intellij에서 text검색시 결과가 다 나오지 않는 현상이 발견됨.. 대상 text가 존재하는 파일이 있는 것을 알고 있는데, 해당 파일이 검색 목록에 없음.. @.@  해당 파일에서 ctrl + f로 검색시에는 잘 됨.. @.@  확인해보니, file indexing의 오류인 듯...  File > Invalidate Caches / Restart... > Invalidate and Restart 로 cache제거 하고 intellij 재부팅하니 검색 잘 됨.. from :  https://stackoverflow.com/questions/6652540/rebuild-intellij-project-indexes

intellij(인텔리제이) 라인 단위 이동 방법( eclipse 단축키 > alt + up / down 에 해당되는 ..)

experience intellij 단축키를 eclipse 키로 설정해서 사용하고 있는데, (alt + up/down) 키를 이용한 라인별 이동이 안됨... * 아래의 키맵(keymap) 설정해주면 됨.. ** Main menu > Code > Move Line Down  ** Main menu > Code > Move Line Up * https://www.jetbrains.com/idea/help/adding-deleting-and-moving-lines.html

인텔리제이(intellij) 프로젝트(project)별 설정(settings)이 아닌, default 설정(settings)하는 방법

experience intellij 사용중에 프로젝트 변경할 일이 있어, 변경하니 기존에 설정한 setting들이 모두 초기화되는 현상 발생 @.@ * File > Settings.. 가 아닌, File > Other Settings > Default Settings.. 를 이용하면 되는 듯...