Tips/GIT

[Git] 형상관리 하지 않을 파일 설정

dextto™ 2013. 2. 24. 11:16

.git 디렉토리가 있는 위치의 .gitignore 파일

또는
.git/info/exclude 파일에 다음과 기술 (#은 주석)


# git-ls-files --others --exclude-from=.git/info/exclude

# Lines that start with '#' are comments.

# For a project mostly in C, the following would be a good set of

# exclude patterns (uncomment them if you want to use them):

# *.[oa]

# *~

*.apk

*.class

*.dex

*.ap_


반응형