| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- tomcat
- VirtualBox
- Quartz
- profile
- Windows 10
- find
- resource
- ora2pg
- bash
- JavaScript
- web.xml
- Eclipse
- import
- ssh
- 단축키
- netsh
- Source
- lsof
- 네트워크
- xargs
- context
- port
- grep
- vscode
- Windows
- plugin
- maVen
- IntelliJ
- Mac
- GIT
- Today
- Total
목록2025/08 (5)
develog
Step Filter 설정하기 - Use Step Filters 를 체크하고- Add Packages 로 필요한 패키지를 추가한다org.apache.catalinaorg.apache.coyoteorg.springframework - Use Step Filters 아이콘을 클릭해서 Step Filter 를 활성화한다 Run to Line breakpoint 가 설정되어 있지 않아도 커서가 지정한 위치로 바로 이동할 수 있다마우스 우클릭 > Run to Line
userA 로 clone 받고userB 로 전환한 후에 git pull 시도한 경우에 아래 오류가 발생fatal: detected dubious ownership in repository at '...'but the current user is: bTo add an exception for this directory call: git config --global --add safe.directory ... git config 에 해당 repository 를 safe.directory 로 추가한다git config --global --add safe.directory /path/to/your/repo
Existing Projects into Workspace- maven 이든 gradle 이든 상관없이 eclipse 형태로 셋팅된 프로젝트를 가져올 때 사용- .project 파일이 있어야 함Existing Gradle Project- build.gradle, settings.gradle 파일이 있는 gradle 기반 프로젝트를 가져올 때 사용Existing Maven Project- pom.xml 파일이 있는 maven 기반 프로젝트를 가져올 때 사용
원본 리포지토리 fork 하기create fork 메뉴enable fork syncing 체크원본 리포지토리 등록하기git remote add upstream https://git주소.gitgit remote -v변경사항 가져오기git fetch upstream병합하기git checkout maingit merge upstream/main포크 저장소에 푸시git push origin main사이트에 가서 pull request 생성하기
