SLOOP

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

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

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

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
12-04-24 조회 848
12-04-24 조회 1,216
12-04-24 조회 606
12-04-24 조회 1,195
12-04-24 조회 722
12-04-24 조회 582
12-04-24 조회 851
12-04-24 조회 2,347
12-04-23 조회 1,039
12-04-23 조회 1,696
12-04-23 조회 619
12-04-23 조회 650
12-04-23 조회 892
12-04-23 조회 661
12-04-23 조회 1,574
12-04-23 조회 541
12-04-23 조회 599
12-04-23 조회 916
12-04-23 조회 722
12-04-23 조회 625
12-04-23 조회 764
12-04-23 조회 758
12-04-23 조회 604
12-04-23 조회 2,445
12-04-23 조회 1,512