.git/config 파일

1. 로컬에서만 창고를 만들면.git/config 파일은 다음과 같습니다.
[core]
           repositoryformatversion = 0
           filemode  = true
           bare = false
           logalrefupdates = true

2. 이 창고가git remote add origin을 통과하면git@git_i5:nexus/android_4_0.git 원격 서버git_에 추가i5의 창고, 그러면 이 파일은 아래의 몇 줄로 늘어납니다.
[remote "origin"]
            fetch = +refs/heads/*:refs/remotes/origin/*
            url = git@git_i5:nexus/android_4_0.git

3. 그러나 이런 상황에서 로컬 창고가 변경되면gitcommit를 호출한 후gitstatus로 보고한 정보는 다음과 같다.
# On branch master
nothing to commit (working directory clean)

이것은 우리의 희망에 부합되지 않는다. 왜냐하면 로컬 창고와 원격 창고 사이에 제출 차이가 있다는 것을 알릴 수 없기 때문에 이 문서에 다음과 같이 덧붙인다.
[branch "master"]
            remote = origin
            merge = refs/heads/master

이렇게gitstatus를 다시 호출하면 표시됩니다
# On branch master
# Your branch is ahead of 'origin/master' by1 commit
#
nothing to commit (working directory clean)

로컬 창고와 원격 창고는commit의 차이가 있다는 것을 알려 줍니다.

좋은 웹페이지 즐겨찾기