Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Navigation
- TEST
- Kotlin
- Flutter
- Button
- textfield
- 계측
- viewmodel
- livedata
- data
- activity
- drift
- appbar
- 테스트
- LifeCycle
- intent
- binding
- textview
- DART
- 앱
- ScrollView
- Coroutines
- 앱바
- Compose
- tabbar
- 안드로이드
- android
- CustomScrollView
- Dialog
- scroll
Archives
- Today
- Total
Study Record
[Git] git 에 포함하지 않을 파일/폴더 설정 본문
728x90
.gitignore 파일
> .gitignore 파일을 만들고 그 안에 제거시킬 파일이나 폴더를 적으면 git 에 포함하지 않을 수 있다.
# 최상위 폴더에서 secret.py 파일
secret.py
# folder 폴더안의 aa.py 파일
/folder/aa.py
# 확장자가 txt인 파일
*.txt
# ! 기호는 반대의 개념으로 포함할 것을 의미한다.
# 위의 *.txt 인 파일들을 무시하지만 password.txt 파일은 무시하지 않는다.
!password.txt
git에 포함하지 않을 파일들(개인 정보가 담겨있는 파일 등)을 정할 수 있다. git status 명령어로 확인해보면 .gitignore 파일에 들어있는 내용대로 포함되어있지 않은 것을 볼 수 있다.
728x90
'Git' 카테고리의 다른 글
[Git] branch & switch (0) | 2022.02.16 |
---|---|
[Git] 과거로 돌아가는 방법(Reset vs Revert) (0) | 2022.02.16 |
[Git] add 와 commit(버전 생성) (0) | 2022.02.15 |
[Git] 초기 설정 및 프로젝트 시작(vscode) (0) | 2022.02.15 |
[Git] Git(버전 관리 시스템)을 배워야하는 이유 (0) | 2022.02.15 |