[oh my zsh ] git 사용시 index refreshing 되는 이슈공부/DevOps2022. 6. 8. 10:15
Table of Contents
반응형
개요
- 평소와 같이 git repository 들어가서 git status 했는데 전체 파일이 modified 상태로 확인됨
- 검색 키워드 👉 index refresh problem when change git terminal
- 작업 환경 : wsl , ubuntu, oh-my-zsh
해결
LF 인식으로 인한 문제였고, git config 수정함
## For the current repository
git config core.filemode false
git config core.autocrlf true
## For global config (필자는 global 설정함 👨💻)
git config --global core.autocrlf true
git config --global core.filemode false
참고
https://github.com/microsoft/WSL/issues/184
https://stackoverflow.com/questions/59061816/git-forces-refresh-index-after-switching-between-windows-and-linux
반응형
'공부 > DevOps' 카테고리의 다른 글
[Docker] MySQL 5.7 설치 및 데이터 import (0) | 2023.04.11 |
---|---|
[oh-my-zsh] help command not found (0) | 2023.01.08 |
[Ubuntu] javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate (0) | 2022.01.15 |
[Docker] docker 로 mariadb 설치 후 연결하기 - (2) (0) | 2021.07.28 |
[Docker] docker 로 mariadb 설치 후 연결하기 - (1) (0) | 2021.07.27 |
@leejinwoo1126 :: 천천히 하나씩
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!