SLOOP

[팁] 리눅스상에서 svn diff 비교 쉽게 하기

· 13년 전 · 3371

쉘상에서 svn diff 시 너무 많은 영역이 수정되었을때 + - 가지고만 비교 하기에는 한계가 있어서 vimdiff 를 사용 하여 svn 과 연동하는 방법입니다.


Example 7.2. diffwrap.sh

#!/bin/sh

# Configure your favorite diff program here.
DIFF="/usr/local/bin/my-diff-tool"

# Subversion provides the paths we need as the sixth and seventh 
# parameters.
LEFT=${6}
RIGHT=${7}

# Call the diff command (change the following line to make sense for
# your merge program).
$DIFF --left $LEFT --right $RIGHT

# Return an errorcode of 0 if no differences were detected, 1 if some were.
# Any other errorcode will be treated as fatal.
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
Linux 13년 전 조회 1,503
Linux 13년 전 조회 1,642
Linux 13년 전 조회 2,281
Linux 13년 전 조회 1,749
Linux 13년 전 조회 2,255
Linux 13년 전 조회 1,755
기타 13년 전 조회 1,887
Linux 13년 전 조회 2,626
Linux 13년 전 조회 1,566
JavaScript 13년 전 조회 2,494
Linux 13년 전 조회 2,160
Linux 13년 전 조회 1,622
기타 13년 전 조회 1,750
PHP 13년 전 조회 2,367
기타 13년 전 조회 3,372
Linux 13년 전 조회 1,479
Linux 13년 전 조회 1,583
Linux 13년 전 조회 2,367
Linux 13년 전 조회 1,842
Linux 13년 전 조회 2,857
Linux 13년 전 조회 1,368
Linux 13년 전 조회 1,860
PHP 13년 전 조회 1,798
Linux 13년 전 조회 1,650
Linux 13년 전 조회 1,362
Linux 13년 전 조회 1,841
Linux 13년 전 조회 1,938
Linux 13년 전 조회 1,462
JavaScript 13년 전 조회 5,286
Linux 13년 전 조회 2,829