일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JPA
- Cache
- request cache
- API
- Selenium
- Docker
- vavr
- Elasticsearch
- 아이온큐
- mysql
- java crawler
- java
- Elastic
- aggs
- Query
- NORI
- KNN
- IONQ
- Analyzer
- 양자컴퓨터
- dbeaver
- redis
- file download
- TSLA
- api cache
- 테슬라
- Aggregation
- elasticsearch cache
- ann
- aqqle
Archives
- Today
- Total
목록Etc/git (1)
아빠는 개발자
[git] git repository 에 올라간 폴더 삭제하는법
.gitignore 파일을 생성하기전 repository 에 푸시를 하는 버릇이 있어서... .idea 파일이 올라갔다. 제거해보잣 1. .gitignore 파일에 .idea 추가.gitignore 파일에 다음 내용을 추가합니다..idea/이로써 Git이 .idea 폴더를 무시하도록 설정됩니다.2. Git에서 .idea 폴더 제거Git이 이미 추적 중인 파일은 무시되지 않으므로 강제로 Git에서 폴더를 삭제해야 합니다.git rm -r --cached .idea-r: 재귀적으로 하위 폴더 포함 삭제--cached: 워킹 디렉터리는 유지하고 Git에서만 삭제3. 변경 사항 커밋git commit -m "Remove .idea folder and ignore it" 4. 푸시git push origin ma..
Etc/git
2025. 2. 1. 20:42