728x90
반응형
SMALL
- local folder에서 .DS_Store 삭제 후 commit
find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch -f
echo .DS_Store >> .gitignore
git add .gitignore
git commit -m ".DS_Store is banished"
git push origin main
728x90
반응형
LIST
'Tool > Git' 카테고리의 다른 글
[Git] non-fast-forward 오류 (0) | 2024.07.23 |
---|---|
[Git] this exceeds GitHub's file size limit of 100.00 MB : git lfs large file 추가 방법 (1) | 2024.07.23 |
[Git] fatal: the remote end hung up unexpectedly 에러 (0) | 2024.07.23 |