반응형
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 |
Tags
- JPA공부
- 자료구조공부
- nestjs스터디
- 프로그래머스
- K8S
- 기술면접공부
- 플러터 개발
- querydsl
- JPA예제
- 코테준비
- 자바공부
- 기술공부
- nestjs
- nestjs공부
- DDD
- 플러터 공부
- 카프카
- 스프링 공부
- JPA
- 스프링부트공부
- 알고리즘공부
- Flutter
- 코테공부
- Kafka
- Axon framework
- 스프링
- 스프링부트
- 스프링공부
- JPA 공부
- JPA스터디
Archives
- Today
- Total
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 doc/notes.txt, but not doc/server/arch.txt
doc/*.txt
# ignore all .pdf files in the doc/ directory
doc/**/*.pdf
반응형
'[Git]' 카테고리의 다른 글
[Git] 오랜만에 써보는 깃 Command (0) | 2023.06.23 |
---|---|
[Git] rebase에 대해서 (0) | 2023.05.01 |
[Git] 소스트리 특정 파일 추적 중지 인덱스 달기 (0) | 2022.01.24 |
[Git] 소스트리 특정 파일 추적 중지 인덱스 달기 (0) | 2022.01.24 |
[GIT] 소스 트리 설정 및 설치 (간단 commit,push, pull 예제) (0) | 2021.12.13 |