SLOOP

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

· 13년 전 · 3377

쉘상에서 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,509
Linux 13년 전 조회 1,653
Linux 13년 전 조회 2,294
Linux 13년 전 조회 1,752
Linux 13년 전 조회 2,259
Linux 13년 전 조회 1,762
기타 13년 전 조회 1,892
Linux 13년 전 조회 2,634
Linux 13년 전 조회 1,573
JavaScript 13년 전 조회 2,496
Linux 13년 전 조회 2,164
Linux 13년 전 조회 1,624
기타 13년 전 조회 1,754
PHP 13년 전 조회 2,375
기타 13년 전 조회 3,378
Linux 13년 전 조회 1,482
Linux 13년 전 조회 1,585
Linux 13년 전 조회 2,372
Linux 13년 전 조회 1,846
Linux 13년 전 조회 2,865
Linux 13년 전 조회 1,373
Linux 13년 전 조회 1,868
PHP 13년 전 조회 1,806
Linux 13년 전 조회 1,656
Linux 13년 전 조회 1,366
Linux 13년 전 조회 1,845
Linux 13년 전 조회 1,942
Linux 13년 전 조회 1,468
JavaScript 13년 전 조회 5,293
Linux 13년 전 조회 2,834