사용자 도구

사이트 도구


git:crlf

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
git:crlf [2014/02/18 12:17]
kwon37xi
git:crlf [2014/12/29 00:21] (현재)
kwon37xi [.gitattributes 예]
줄 7: 줄 7:
   * https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html : 매뉴얼   * https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html : 매뉴얼
  
 +===== CRLF -> LF 전환 =====
 +  * 먼저 CRLF 혹은 LF를 강제해야할 모든 파일을 ''dos2unix'', ''unix2dos'' 명령으로 올바른 형태로 모두 바꾼다.<code sh>
 +find . -name "*.java" -exec dos2unix {} \;
 +find . -name "*.groovy" -exec dos2unix {} \;
 +# ...
 +</code>
 +  * 해당 상태를 커밋한다.
 +  * 이제 ''.gitattributes''에 파일별 상태를 기술한다.
 +  * ''.gitattributes'' 파일 자체를 커밋한다.
 ===== dos2unix/unix2dos ===== ===== dos2unix/unix2dos =====
 ''dos2unix'' 패키지를 설치하고 ''dos2unix'', ''unix2dos'', ''unix2mac'' 등의 명령으로 테스트해본다. ''dos2unix'' 패키지를 설치하고 ''dos2unix'', ''unix2dos'', ''unix2mac'' 등의 명령으로 테스트해본다.
 +
 +===== .gitattributes 예 =====
 +<code>
 +* text=auto
 +
 +*.bat text eol=crlf
 +*.cmd text eol=crlf
 +
 +*.java text elo=lf
 +*.groovy text eol=lf
 +*.py text eol=lf
 +*.rb text eol=lf
 +*.gradle text eol=lf
 +*.properties text eol=lf
 +*.xml text eol=lf
 +*.sql text eol=lf
 +*.txt text eol=lf
 +*.md text eol=lf
 +*.ftl text eol=lf
 +*.jade text eol=lf
 +*.jsp text eol=lf
 +*.jspf text eol=lf
 +
 +gradlew text eol=lf
 +</code>
 +
 +오직 ''LF''만..
 +<code>
 +* text eol=lf
 +</code>
git/crlf.1392693478.txt.gz · 마지막으로 수정됨: 2014/02/18 12:17 저자 kwon37xi