We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POSIX 는 라인의 끝을 LF 로 보고, Windows 는 CRLF 로 보는게 기본입니다. 여러 팀원이 협업하는 경우, git 의 개인설정에 따라 파일마다 다른 EOL(End Of Line)이 커밋될 수 있습니다. 일반적으로 git에는 LF 만 커밋되도록 합니다.
이러한 동작이 보장되도록 하는 가장 좋은 방법은 아래의 줄을 가진 .gitattributes 파일을 프로젝트 루트에 커밋하는 것입니다.
.gitattributes
* text=auto eol=lf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
POSIX 는 라인의 끝을 LF 로 보고, Windows 는 CRLF 로 보는게 기본입니다.
여러 팀원이 협업하는 경우, git 의 개인설정에 따라 파일마다 다른 EOL(End Of Line)이 커밋될 수 있습니다.
일반적으로 git에는 LF 만 커밋되도록 합니다.
이러한 동작이 보장되도록 하는 가장 좋은 방법은 아래의 줄을 가진
.gitattributes
파일을 프로젝트 루트에 커밋하는 것입니다.The text was updated successfully, but these errors were encountered: