Git 버 전 관리 없 이 파일 무시

본문 부분 참고:http://blog.csdn.net/xmyzlz/article/details/8592302
1. gitignore 파일 수정
git 에서 어떤 파일 을 무시 하고 버 전 라 이브 러 리 에 제출 하지 못 하 게 하려 면. gitignore 파일 을 수정 하 는 방법 을 사용 할 수 있 습 니 다.예:. gitignore 파일 내용 은 다음 과 같 습 니 다. \ # Android generated bin / gen / classes / gen - external - apklibs /
# Ant
local.properties

# Maven
target/
release.properties

# Eclipse
.classpath
.project
.externalToolBuilders/
.metadata
.settings

# IntelliJ
*.iml
*.ipr
*.iws
.idea/
out/

# Mac
.DS_Store

# gitignore
.gitignore 

2. 명령 사용
. gitignore 는 track 되 지 않 았 던 파일 만 무시 할 수 있 습 니 다. 일부 파일 이 버 전 관리 에 포함 되 었 다 면 수정. gitignore 는 유효 하지 않 습 니 다.올 바른 방법 은 모든 clone 에서 내 려 오 는 창고 에서 특정 파일 의 변경 상황 을 검사 하지 않도록 수 동 으로 설정 하 는 것 입 니 다.git update - index -- assume - unchanged FILE 는 FILE 에 무시 할 파일 을 입력 합 니 다.복원 하려 면 명령 을 사용 하 십시오: git update - index -- no - assume - unchanged FILE
3. git / info / exclude 사용
git 는 또 다른 exclude 방식 으로 같은 일 을 할 수 있 습 니 다. 다른 것 은. 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]
    # *~
    .gradle/
    .idea/
    .settings/
    appcompat_v7/
    bin/
    build/
    gen/
    gradle/
    out/
    proguard/
    ship/
    target/
    .classpath
    .gitignore
    .idea
    .project
    .readme
    .update-config
    *.iml
    local.properties

. gitignore 는 재 미 있 는 작은 기능 도 있 습 니 다. 빈. gitignore 파일 은 placeholder 라 고 할 수 있 습 니 다.프로젝트 에 빈 로그 디 렉 터 리 를 만들어 야 할 때 유용 합 니 다.로그 디 렉 터 리 를 만들어 서 빈. gitignore 파일 을 설치 할 수 있 습 니 다.이렇게 하면 clone 이라는 repo 를 사용 할 때 git 는 자동 으로 빈 로그 디 렉 터 리 를 만 듭 니 다.

좋은 웹페이지 즐겨찾기