개발 툴
[github] github desktop gitignore 안될 때 해결방법
.gitignore를 제대로 설정해도 Changes 탭에 뜨는 경우가 가끔 있다.캐시 처리를 해주면 해결된다. github desktop에서 손쉽게 캐시를 삭제할 수 있다.⭐⚠ Changes가 다 날아갈 수 있으니 일단 Commit 한 번 해준다.1. Repository > Open in Command Prompt 2. Command Prompt 창이 뜨면, 최상위 경로로 맞춰준다.cd hello 3. 아래 명령어를 차례대로 입력한다.git rm -r --cachedgit addgit commit -m "gitignore cache reset"
[github] gitignore 모음
Visual Studio C# 더보기 ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.sln.docstates # Build results [Dd]ebug/ [Rr]elease/ x64/ [Bb]in/ [Oo]bj/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp..
[VM Virtual Box] Windows에서 Virtual Box로 Ubuntu사용하기
학생 시절, 터미널을 사용하는 것, 운영체제쪽은 절대절대네버 안하겠다고 다짐하며 꿋꿋이 피해왔던 Linux.. 결국.. Ubuntu를 써보게됐다.^^.. 역시 뭐든 경험해놓으면 쓸모가 있을 것이라는걸 또 다시 느꼈다. 다음엔 아무리 하기 싫고 배우기 싫어도 '그래도 해야지 어떡해'라는 마음가짐으로 충실히 머리 속에 우겨넣겠다는 다짐을 해본다.. 1. Ubuntu 설치하기 https://ubuntu.com/download/desktop Download Ubuntu Desktop | Download | Ubuntu Ubuntu is an open source software operating system that runs from the desktop, to the cloud, to all your inte..
[IntelliJ] IntelliJ IDEA 다운로드 및 설치하여 사용하기
언젠가 인스타 스토리에 eclipse 속도의 문제성을 올리면서 친구에게 IntelliJ를 추천받은 적이 있다. 확실히 쓰기 편하고 효율적이며, 무엇보다 속도 문제로 혈압 오를 일이 없을 것 같았다. 현재 회사는 혼자 IntelliJ를 사용해도 될지 몰라서 미루고 있었는데, 운이 좋게도 eclipse에서 IntelliJ로 바꿀 수 있는 기회가 왔다. 1. IntelliJ IDEA 다운로드 https://www.jetbrains.com/idea/ IntelliJ IDEA – the Leading Java and Kotlin IDE IntelliJ IDEA is undoubtedly the top-choice IDE for software developers. It makes Java and Kotlin de..
[eclipse] Starting Tomcat v8.5 Sever at localhost' has encountered a problem 해결
톰캣 캐시 부족 org.apache.catalina.webresources.Cache backgroundProcess \apache-tomcat-8.5.56\conf\context.xml에 아래 코드 추가 포트 사용중 Starting Tomcat v8.5 Sever at localhost' has encountered a problem. Port 8080 required by Tomcat v8.5 Server at localhost is already in use. 1. 명령 프롬프트 실행 (windows + R, cmd 입력) 2. netstat -ano | findstr 8080 => 포트 8080을 사용하는 프로세스 ID찾기 (위의 경우는 식별자 15124이고, ESTABLISHED한 상태 task..