SLOOP

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

· 2012-04-23 (월) 18:43:05 · 3622

쉘상에서 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.
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
Linux 12-04-24 조회 2,478
Linux 12-04-24 조회 1,955
Linux 12-04-24 조회 2,427
Linux 12-04-24 조회 1,963
기타 12-04-24 조회 2,066
Linux 12-04-24 조회 2,807
Linux 12-04-24 조회 1,761
JavaScript 12-04-24 조회 2,673
Linux 12-04-24 조회 2,335
Linux 12-04-24 조회 1,809
기타 12-04-24 조회 1,935
PHP 12-04-23 조회 2,528
기타 12-04-23 조회 3,623
Linux 12-04-23 조회 1,659
Linux 12-04-23 조회 1,764
Linux 12-04-23 조회 2,538
Linux 12-04-23 조회 2,024
Linux 12-04-23 조회 3,034
Linux 12-04-23 조회 1,525
Linux 12-04-23 조회 2,031
PHP 12-04-23 조회 1,973
Linux 12-04-23 조회 1,822
Linux 12-04-23 조회 1,546
Linux 12-04-23 조회 2,025
Linux 12-04-23 조회 2,123
Linux 12-04-23 조회 1,635
JavaScript 12-04-23 조회 5,470
Linux 12-04-23 조회 2,980
Linux 12-04-22 조회 1,576
Linux 12-04-22 조회 1,625