Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.
git에서 작업하는 동안에 .gitignore파일에 지정하지 않은 파일이 ignore되는 경우가 있는데..
Git Bash에서 check-ignore명령을 이용하여 rule파일과 적용된 파일을 확인할 수 있다.
가. ignore가 불필요한 파일을 add해본다(예, /C/dev/workspace/sdaf/sda-common/src/main/resources/mariadb/mapper/sch/Aggr_SQL.xml
$ git add /C/dev/workspace/sdaf/sda-common/src/main/resources/mariadb/mapper/sch/Aggr_SQL.xml
The following paths are ignored by one of your .gitignore files:
sda-common/src/main/resources/mariadb/mapper/sch/Aggr_SQL.xml
Use -f if you really want to add them.
나. ignore가 불필요한 파일을 폴더를 add해본다(예, /C/dev/workspace/sdaf/sda-common/src/main/resources/*.*)
$ git add /C/dev/workspace/sdaf/sda-common/src/main/resources/*
The following paths are ignored by one of your .gitignore files:
sda-common/src/main/resources/log4j.xml
sda-common/src/main/resources/mybatis-config.xml
Use -f if you really want to add them.
다. check-ignore 명령을 이용하면 rule파일과 적용된 파일을 매핑하여 볼 수 있다.
$ git check-ignore -v /C/dev/workspace/sdaf/sda-common/src/main/resources/*.*
"C:\Users\gooper\Documents\gitignore_global.txt":28:*.xml C:/dev/workspace/sdaf/sda-common/src/main/resources/log4j.xml
"C:\Users\gooper\Documents\gitignore_global.txt":28:*.xml C:/dev/workspace/sdaf/sda-common/src/main/resources/mybatis-config.xml
댓글 0
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
13 | [bitbucket] 2022년 3월 2일 부터 git 작업시 기존에 사용하던 비빌번호를 사용할 수 없도록 변경되었다. | 2022.04.30 | 495 |
12 | 원격에 있는 git를 받은후 기존repository삭제후 새로운 리포지토리에 연결하여 소스 등록 | 2019.07.13 | 698 |
11 | 원격 리포지토리에서 최초 clone시 Permission denied (publickey). 오류발생시 조치사항 | 2017.06.20 | 1305 |
10 | .git폴더를 삭제하고 다시 git에 추가하고 서버에 반영하는 방법 | 2017.06.19 | 4864 |
9 | Eclipse 에서 bitbucket.org 연동 하기 | 2017.06.08 | 848 |
8 | 원격의 origin/master를 기준으로 dev branch를 만들어 작업후 원격의 origin/dev에 push하는 방법 | 2016.11.22 | 859 |
» | .gitignore파일에 지정되지 않은 파일이 ignore되는 경우 확인방법 | 2016.11.22 | 849 |
6 | github에 있는 프로젝트와 로컬에서 작업한 프로젝트 합치기 | 2016.11.22 | 859 |
5 | 특정 커밋 시점(commit id를 기준으로)으로 돌리기(reset) | 2016.11.21 | 608 |
4 | Github를 이용하는 전체 흐름 이해하기 | 2016.11.18 | 269 |
3 | 특정 단계의 commit상태로 만들기(이렇게 하면 중간에 반영된 모든 commit를 history가 삭제된다) | 2016.11.17 | 876 |
2 | git 초기화(Windows에서 Git Bash사용) | 2016.11.17 | 1102 |
1 | git설명 한글판 | 2015.12.09 | 502 |