변경되지 않은 것으로 가정하기
$
git update-index --assume-unchanged <file>...
위에서 가정한것 취소하기
$ git update-index --no-assume-unchanged <file>
또는
$ git update-index --really-refresh
수정 사항 확인 (check for modification)
$ git status --untraced-files=no --porcelain
또는
$ git status -uno -s
또는
$ git ls-files -m
변경된 파일들을 변경하지 않은 것으로 가정하기...
$ git update-index --assume-unchanged $(git ls-files -m)
'프로그래밍 > git/svn' 카테고리의 다른 글
svn static builds for windows < svn 1.7.4 무설치 > (0) | 2012.06.01 |
---|
댓글