.gitignore 에 등록하자!
.DS_Store
현재 폴더 하위의 .DS_Store 삭제
sudo find ./ -name ".DS_Store" -depth -exec rm {} \;
[참고]MAC_OS에서 .DS_Store 생성하지 않도록 하는 방법
터미널을 열어 아래 명령어를 수행합니다.
com.apple.desktopservices DSDontWriteNetworkStores true
# 다시 켜려면
com.apple.desktopservices DSDontWriteNetworkStores false
'프로그래밍 > Git&BitBucket' 카테고리의 다른 글
git reset 이전의 커밋으로 돌아가자. (0) | 2024.08.26 |
---|---|
git config --global color.ui (0) | 2024.08.23 |
Git Rebase (0) | 2024.08.22 |
Git Back to the Future (0) | 2019.06.27 |
BitBucket Repository PR(Pull Request) 기본 검토자 지정 (0) | 2019.03.08 |