반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Flutter
- 카프카
- JPA예제
- 기술면접공부
- 스프링
- Kafka
- 스프링부트
- 코테준비
- 플러터 공부
- Axon framework
- 스프링 공부
- 알고리즘공부
- JPA 공부
- 프로그래머스
- 기술공부
- nestjs스터디
- 스프링공부
- JPA공부
- 자바공부
- JPA
- 자료구조공부
- JPA스터디
- K8S
- 스프링부트공부
- 플러터 개발
- DDD
- querydsl
- 코테공부
- nestjs공부
- nestjs
Archives
- Today
- Total
목록git ignore file (1)
DevBoi
[GIT]gitignore 파일내용추가
깃 레파지토리 항상 최상위에 존재한다. 해당 파일 내용을 변경해서 푸쉬하면 된다. 잘안되면 git rm -r --cached . git add . git commit -m "Apply .gitignore" 이 명령어로 초기화하고 커밋하면된다. 아래는 깃 파일 샘플 양식이다. 참고하자gi # : comments # no .a files *.a # but do track lib.a, even though you're ignoring .a files above !lib.a # only ignore the TODO file in the current directory, not subdir/TODO /TODO # ignore all files in the build/ directory build/ # ignore..
[Git]
2023. 6. 17. 00:05