Showing posts with label svn. Show all posts
Showing posts with label svn. Show all posts

2015/12/03

SVN 서버에 log 없이 Commit 할 수 없도록 설정하기

Visual SVN을 사용하고 있는데 사용자들로 하여금 Commit 할 때 Log 메시지를 필수로 넣게하고자 방법을 찾아 보았다.
SVN 서버 설정에는 Commit 관련하여 hook 라는 여러가지 이벤트를 처리할 수 있는 방법이 있다.

Visual SVN 의 Repository 의 Property를 보면 Hooks 탭을 볼 수있는데 이 탭에서 여러가지 Event에 대한 설정을 할 수 있다.
Commit 관련하여 시작할 때와 파일을 올리고 Commit 하기 직전 그리고 Commit을 완료한 시점에 대한 hook를 설정할 수 있다.
start-commit
run before commit transaction begins, can be used to do special permission checking
pre-commit
run at the end of the transaction, but before commit. Often used to validate things such as a non zero length log message.
post-commit
runs after the transaction has been committed. Can be used for sending emails, or backing up repository.
- 출처 : Stack Overflow

pre-commit hook에 Windows 배치스크립트를 작성하여 검사할 수 있으며 이 스크립트가 0이 아닌 에러코드를 넘길 경우 Commit이 취소 된다.

아래 코드는 Stack Overflow에서 얻은 로그를 6자 이상 넣도록 하는 배치코드 이다.
setlocal enabledelayedexpansion

set REPOS=%1
set TXN=%2

set SVNLOOK="%VISUALSVN_SERVER%\bin\svnlook.exe"

SET M=

REM Concatenate all the lines in the commit message
FOR /F "usebackq delims==" %%g IN (`%SVNLOOK% log -t %TXN% %REPOS%`) DO SET M=!M!%%g

REM Make sure M is defined
SET M=0%M%

REM Here the 6 is the length we require
IF NOT "%M:~6,1%"=="" goto NORMAL_EXIT

:ERROR_TOO_SHORT
echo "Commit note must be at least 6 letters" >&2
goto ERROR_EXIT

:ERROR_EXIT
exit /b 1

REM All checks passed, so allow the commit.
:NORMAL_EXIT
exit 0

2012/06/11

AnkhSVN 2.3.11269 Released

변경사항

  • Compiled against Subversion 1.7.5.

  • Support for Visual Studio 2012 RC, including a UI refresh.

  • Removed old style file selection control, replacing it with the common selection dialog

  • Many performance improvements in AnkhSVN and SharpSvn (Several privately reported cases via CollabNet and their partners)

  • Directly record copies and moves in Subversion instead of moving files around via temporary locations

  • Disable commands that could cause unrelated reloads files during opening the solution, building and debugging

  • Enable the navigation bar in the annotate viewer of Visual Studio 2010 and 2012

  • Resolve a focus stealing issue in several Sql server related project types, by using a slower glyph update for these projects

  • Improve stability of the Visual Studio Class View in Visual Studio 2010, when the Solution Navigator is not installed

  • Show a VS wait dialog when we are slowing down Visual Studio for too long on Pending changes initialization

  • Fix copy recording directly below the working copy root

  • Fix 'Scc Files' / 'Scc Excluded' handing on C++ projects in Visual Studio 2010 and later

  • Add option to immediately import a project on adding it to Subversion, to avoid a double commit

  • Properly mark new files over deleted files as pending changes

  • Record and reload recent urls in the add to subversion dialog





AnkhSVN Homepage

AnkhSVN Download Page&

Original Post : http://neodreamer-dev.tistory.com/660

2011/10/25

[SVN] Can't find a temporary directory: Internal error



바로 어제 저녁에 SVN에 커밋한 프로젝트를 업데이트 받으려 했는데 위 이미지 처럼 Can't find a temporary directory: Internal error 에 마주쳤다.별다른 작업을 한 것도 없는데 황당항 메시지 였다.

요즘 CVN 클라이언트인 TortoiseSVN을 1.7.1 버전으로 업데이트하여 발생한 문제처럼 보였는데 인터넷에 찾아보니 임시 디렉토리 문제라 하는데 메세지로는 임시 디렉토리를 못 찾았다는 건데...


난 시스템을 설치하고 임시 디릭토리를 항상 운영체제와 다른 드라이브에 설정을 한다. 경로는 한글이나 공백이 포함되면 못 찾을 수 있을까봐 아주 간단하게 설정을 한다.


에러 해결책을 찾아보니 대부분 리눅스 기반에서 권한 문제나 더 이상 쓸 공간이 없을 때 발생하여 권한 또는 여유 공간을 확보해 주면 되는데 난 윈도우 기반이라 이에 해당하지 않았다.


그래서 대략 5GB 사용중이던 임시 디렉토리를 청소를 하고 다시 시도해 보니 프로젝트를 정상적으로 업데이트를 하였다. 해결된 이유가 임시 디렉토리를 정리해서 인지 임시 디렉토리를 접근해서 인지는 모르겠으나 자꾸만 TortoiseSVN 1.7.1 버전의 버그라는 생각을 지울 수

Original Post : http://neodreamer-dev.tistory.com/606

2011/10/24

TortoiseSVN 1.7.1 Released

불과 얼마전 1.7버전을 공개 했었는데 또 다시 1.7.1 버전을 공개하였다. 이번 버전에서는 많은 버그가 수정되었다고 한다.



Version 1.7.1 에서 버그 수정 사항

- BUG: Issue #88: Check for modifications on

       multiple targets. (Stefan)

- BUG: Issue #89: Crash in TSVNCache. (Stefan)

- BUG: Cursor stayed as busy after an operation

       until it was moved. (Stefan)

- BUG: Issue #92 : checked item count in 

       commit dialog is wrong. (Stefan)

- BUG: Issue #94: resolve conflict dialog

       resizing issues. (Stefan)

- BUG: Issue #95: docs are wrong for log

       filter automation. (Stefan)

- BUG: Missing space in property status

       text. (Stefan)

- BUG: Issue #96: Unable to close repo browser

       to repository with username/password

       required. (Stefan)

- BUG: Issue #97: Too many accesses to the

       config files. (Stefan)

- BUG: Issue #98: Endless loop in

       repobrowser. (Stefan)

- BUG: Issue #100: wrong argument exception

       in repobrowser. (Stefan)

- BUG: Issue #99: Memory corruption in

       repository browser. (Stefan)

- BUG: Issue #102: renamed diff scripts. (Stefan)

- BUG: Issue #102: tagging externals errors

       not shown. (Stefan)

- BUG: Issue #104: tagging externals for

       files pegs to HEAD. (Stefan)

- BUG: Issue #105: Win7 library loses

       command buttons. (Stefan)

- BUG: Issue #106: "Search for:" string is

       trimmed forcibly in TortoiseMerge. (Stefan)

- BUG: Issue #107: Crash when editing

       externals property. (Stefan)

- BUG: Issue #108: log dialog uses wrong

       file if sorted. (Stefan)

- BUG: Issue #109: Log dialog does not

       refresh correctly. (Stefan)

- BUG: Issue #110: Bogus entries in

       Language Combo on x64. (Stefan)


TortoiseSVN <

Original Post : http://neodreamer-dev.tistory.com/604

2011/10/17

AnkhSVN 2.3.10481 released

Visual Studio SVN Plug-in 인 AnkhSVN이 SubVersion 1.7 Release에 맞추어 업데이트 버전을 공개 하였다.



AnkhSVN 2.3.10481 버전 변경 사항


  • Subversion 1.7 support

  • Support for the Visual Studio 11 Developer Preview




2.1 버전에서 2.3으로 바로 건너 뛰었다. 2.2 개발 버전이 있어서 인지 메인 잇슈인 SubVersion 1.7 지원과 Visual Studio 11 버전을 지원하는 기능을 추가하고 2.3으로 건너 뛴 것 같다. 


AnkhSV

Original Post :
http://neodreamer-dev.tistory.com/600

TortoiseSVN 1.7 Release



SVN Client 인 TortoiseSVN 이 1.7 버전을 공개하였다. 이번 버전에서는 많은 변화가 있었다.

아래 리스트는 1.7 버전에서 변경된 사항이다. 


  • Working copy metadata storage improvements

  • x64 Installer

  • Property dialogs

  • Windows 7 Library

  • Log dialog

  • Revision graph

  • Branch/Tag dialog

  • Commit dialog

  • Repository browser

  • Sparse checkouts

  • TortoiseMerge

  • Compatibility concerns





많은 것들이 바뀌었지만 대부분 UI나 이전과 크게 다르지 않은 것이지만 그 중 관심있게 보아야 할 것이 첫 번째 항목인 Working copy metadata storage improvements 이다. Client 쪽의 메타 데이터 저장 시스템이 변경되어 이전 버전의 클라언트로 받은 소스들과 호환이 되지 않는다. 실제 1.6 버전에서 받은 소스들은 탐색기 상에서 Overay 아이콘이 표시가 되지 않는다. 이러한 프로젝트폴더에서 마우스 오른쪽 버튼을 누르면 Context 메뉴에 "SVN Upgrade working copy" 라는 메뉴가 보여지며 1.7버전으로 업그레이드를 하면 더이상 하위 버전의 클라이언트로는 해당 소스를 관리할 수 없게 된다. 사이트에서는 업그레이드 보다는 새롭게 프로젝트를 받는 것을 권장하기 때문에 업그레이드 전 소스 정리를 해 두는 것이 좋다.


TortoiseSVN

TortoiseSVN 1.7 Release Note&

Original Post : http://neodreamer-dev.tistory.com/599

2010/10/21

AnkhSVN에서 .DLL 과 .LIB 파일을 SVN 에 등록하기


2010/10/16 - [Dev Story] - AnkhSVN 으로 Subversion에서 프로젝트 받아오기




AnkhSVN 으로 프로젝트를 SVN 에 올릴 경우 프로젝트에 포함된 .DLL 파일과 .LIB 파일이 SVN Repository 에 등록이 되지 않는데 이를 등록하는 방법을 지금까지 찾을 수 없었는데 의외로 간단한 방법을 찾았다.




AnkhSVN 에 포함되어 있는 Working Copy Explorer 을 이용하면 해결 할 수 있다. Working Copy Explorer 는 PC에서 작업중인 프로젝트를 탐색할 수 있으면 SVN 관련 작업을 지원하는 View 이다. Visual Studio 의 View 메뉴에서 Working Copy Explorer 를 호출 할 수 있다.







Repository에 등록되지 않은 파일들을 등록하길 원할 경우 해당 파일에서 오른쪽 버튼의 Subversion 메뉴에서 할 수 있다.<

Original Post : http://neodreamer-dev.tistory.com/472

2010/04/27

VisualSVN 2.0.1 / VisualSVN Server 2.1.2 Released

VisualSVN 과 VisualSVN Server 이 업그레이드 되었다.


VisualSVN 2.0.1



VisualSVN 2.0.1

2.0 에서 바뀐 사항

  • Updated to Subversion 1.6.11. For further details please see

    http://svn.apache.org/repos/asf/subversion/tags/1.6.11/CHANGES

  • Modeling projects are supported in Visual Studio 2010.

VisualSVN




VisualSVN Server 2.1.2



2.1.1 에서 바뀐사항

  • Updated to Subversion 1.6.11. For further details please see

    http://svn.apache.org/repos/asf/subversion/tags/1.6.11/CHANGES

  • Disallow installation on servers with non-ASCII hostnames.

  • Generate Apache config in the UTF-8 encoding.


VisualSVN Server

<

Original Post : http://neodreamer-dev.tistory.com/425

2010/04/24

Visual Studio 를 위한 SVN Plug-in : AnkhSVN 2.1



Visual Studio 에서 SVN 관리를 도와주는 AnkhSVN 이 2.1 버전으로 업그레이드 되었다. 변경 기록을 보니 Visual Studio 2010버전을 지원하면서 부터 버전을 올린 것 같다.



AnkhSVN 홈페이지

AnkhSVN Screenshot

AnkhSVN Daily update<

Original Post : http://neodreamer-dev.tistory.com/422

2010/04/21

[Android Dev.] Eclipse SVN!! R.java는 안되겠니?

Eclipse 의 Team 메뉴에 있는 Share Project를 이용해서 Project 를 SVN에 업로드를 하면 gen 폴더의 R.java 파일이 SVN 서버에 올라가지 않는다.


R.java는 Android Project 에서 xml 파일을 분석해서 자동으로 생성되는 파일로 프로젝트에 이 파일이 없으면 에러가 난다.


R.java 파일이 SVN서버에 등록이 되지 않는 이유에 대해서 원인을 찾아 보았지만 찾을 수 없었다. (물론 탐색기에서 TortoiseSVN을 이용하면 SVN에 등록이 된다.)


Android Project 에서 R.java 파일은 다른 리소스(.xml) 파일이 있으면 자동으로 생성이 되기 때문에 SVN에 등록이 되지 않는 것 같은데 그러면 bin 폴더 또한 기본적으로 등록이 되지 않아야 할 것 같은데 bin 폴더는 기본적으로 등록이 된다.


여러가지로 이에 대한 문제를 찾아 보았지만 원인을 찾을 수 없었다.


Eclipse 에서 Android Project를 SVN 서버로 등록을 할 때에는 gen 폴더가 등록이 되지 않는 것은 사실이고 여타 다른 설정에서 이러한 사항을 바꿀 수는 없었다. 그래서 우회책을 찾아 보았다.


SVN 에서 프로젝트를 새로 받으면 R.java가 포함되어 있는 gen 폴더가 존재 하지 않아 에러가 발생한다.





이때, Project 메뉴의 Clearn... 명령을 수행하게 되면 프로젝트으 에러가 해소 된다.






SVN을 개인 적인 목적으로 사용하기 때문에 이러한 사항을 안다면 큰 불편함을 모르겠지만 참여하지 않는 프로젝트의 다운로드나 협업에서 프로젝트를 다운받을 경우 항상 Clearn... 명령을 사용해야 하는 것이 불편한 일 일 것이다. 기본적으로 업로드에서 제한 했더라도 사용자가 올릴 수 있는 선택권은 주어져야 하는게 아닌가 하는 생각이 든다.<

Original Post : http://neodreamer-dev.tistory.com/414

2010/04/18

TortoiseSVN 1.6.8 released

윈도우즈용 SVN 클라이언트인 TortoiseSVN 이 1.6.8 버전을 공개 하였다.


TortoiseSVN 1.6.8 has been released.


This is a bugfix release/maintenance release, linked with Subversion 1.6.11.

This release also contains several adjustments to make TortoiseSVN work better on Windows 7.




TortoiseSVN Hmepage

TortoiseSVN Download Page<

Original Post : http://neodreamer-dev.tistory.com/412

2010/04/12

[Android Dev.]SVN 서버에 안드로이드 프로젝트 쉽게 올리기

이전 글에서 Google Code 의 SVN Hosting 을 이용한 안드로이드 프로젝트 관리에 대한 글을 쓸 때 프로젝트를 SVN 으로 올리는 방법도 언급을 했었은데 그보다 더 쉬운 방법을 찾아서 기록해 본다.


2010/04/11 - [Dev Story/Android] - [Android Dev.]무료 SVN 호스팅 Google Code 를 이용한 코드 관리하기


안드로이드 프로젝트를 생성(TestSVN)을 하였으면 해당 프로젝트에서 마우스 오른쪽 버튼을 눌러 Team 메뉴에서  "Share Project..." 메뉴를 선택한다.

Team 메뉴의 Share Project... 메뉴

Team 메뉴의 Share Project... 메뉴



"Share Project..."를 실행하면 아래와 같이 공유 방법을 선택하는 대화상자가 나오는데 이 대화상자에서 SVN을 선택한다.

프로젝트 공유 방법 설정 대화상자

프로젝트 공유 방법 설정 대화상자



SVN을 선택하면 새로운 Repository 를 생성할 것인지 기존의 Repository 를 이용할 것인지 묻는 대화상자가 나오는데 이 창에서 기존에 등록되어 있는 Repository를 선택하고 다음 단계로 진행을 한다.

Repository 선택 대화상자

Repository 선택 대화상자



다음 단계에서는 Repository 상에서 프로젝트의 위치를 설정하는 대화상자로 간단하게 Simple Mode 에서 설정할 수 있고 확장된 모드에서 상세 설정을 할 수 있다. 간단하게 Simple Mode 에 Repository 의 하위 폴더가 프로젝트 이름(TestSVN)이 있는 것만 확인하고 다음 단계로 넘어 간다.

프로젝트 위치 설정 대화상자

프로젝트 위치 설정 대화상자



다음 단계는 commit 에 대한 comment 를 입력한다.

Commit Comment 대화상자

Commit Comment 대화상자



comment 를 입력하고 "Finish" 버튼을 누르면 SVN 서버로 올려질 프로젝트에 대한 Comment 입력과 구성 파일들이 선택할 수 있는 상태로 나열된 대화 상자가 나오는데 Comment는 생략하거나 프로젝트에 대한 간단한 설명을 입력하고 아래쪽 프로젝트 파일 리스트에서는 bin 폴더에 있는 파일들 및 bin 폴더를 제거한다. bin 폴더에 포함되어 있는 파일은 프로젝트를 Compile 할 때 자동으로 생성이 되므로 굳이 SVN 을 통해서 관리할 필요가 없다.

Comment 및 파일 선택 대화상자

Comment 및 파일 선택 대화상자



프로젝트 구성 파일을 선택하고 "OK"를 누르면 해당 프로젝트가 SVN 서버로 올라가게 된다.

프로젝트 업로드 상황창

프로젝트 업로드 상황창



"SVN Repository" 창에서 Repository 를 Refresh 하면 새로 올려진 TestSVN 프로젝트를 확인할 수
있다.

Repository 상태

Repository 상태

<

Original Post : http://neodreamer-dev.tistory.com/409

2010/01/26

TortoiseSVN 1.6.7 Released

Version 1.6.7
- BUG: The status cache could segfault in some situations. (Stefan)
- BUG: Memory leak in SubWCRevCOM. (Stefan)
- BUG: The copy-from url in the Check-for-modifications Dialog
was wrong for single files. (Stefan)
- BUG: SubWCRevCOM could only be used by one single application
at a time. (Stefan)
- BUG: The column order wasn't saved correctly in the status
list control. (Stefan)
- BUG: The message "only numbers are allowed" could be shown even
when the bugtraq:number property was set to false. (Stefan)
- BUG: The "diff with previous revision" in the log dialog could
use the wrong revision if there was a path with a copyfrom
revision. (Stefan)
- BUG: Deadlock in the shell extension when used from a multi-threaded
application. (Jonathan Potter, GP Software and Stefan)
- BUG: The "commonURL" parameter in the CheckCommit() method of the
IBugtraqProvider2 interface was sometimes wrong. (Stefan)
- BUG: Revision graph won't show w/c revision under certain
conditions. (Stefan Fuhrmann)
- BUG: Revision graph would segfault for small repositories
(Stefan Fuhrmann)
- BUG: Errors returned in a post-commit hook script were ignored
in a branch/tag/copy operation. (Stefan)
- BUG: Text files dragged from the repository browser to the explorer
got truncated if they had the svn:eol-style property set. (Stefan)
- BUG: Resizing the dialogs with right/middle click didn't respect
the current monitor but always moved the dialogs to the
primary monitor. (Stefan)

TortoiseSVN Homepage

Download TortoiseSVN-1.6.7.18415-win32-svn-1.6.9.msi
Download TortoiseSVN-1.6.7.18415-x64-svn-1.6.9.msi
Original Post :
http://neodreamer-dev.tistory.com/363

2009/03/31

Visual SVN Server/Client 1.7 Released!!



Subversion 1.6 공개에 따라 VisualSVN 도 subversion 1.6을 포함하는 새로운 버전을 공개하였고, 홈페이지도 새 단장을 하였다.



Version 1.7 (March 24, 2009)


  • Updated to Subversion 1.6.

  • Updated to OpenSSL 0.9.8j.





VisualSVN 1.7 Release Notes

VisualSVN 1.7 Download


VisualSVN Server 1.7 Release Notes

VisualSVN Server 1.7 Download
Original Post :
http://neodreamer-dev.tistory.com/279

TortoiseSVN-1.6.0.15855 Released!!

What's New in TortoiseSVN 1.6


  • file:/// access to BDB repositories

  • handling of tree conflicts

  • log cache

  • revision graph

  • IBugtraq provider plugin enhancements

  • Misc changes

자세한 변경사항 보기



TortoriseSVN website

TortoiseSVN 1.6 Release Note
TortoiseSVN 1.6 Change Logs

Download : TortoiseSVN-1.6.0.15855-win32-svn-1.6.0.msi
Download : TortoiseSVN-1.6.0.15855-x64-svn-1.6.0.msi

Original Post : http://neodreamer-dev.tistory.com/278

2009/01/06

TortoiseSVN-1.5.6.14908 Released!!



이번 버전에서 수정된 사항
Version 1.5.6
- CHG: Disabled capieng again - users were annoyed. (Stefan)
- BUG: possible segfault in TSVNCache when shutting down windows. (Stefan)
- BUG: The client-side hook scripts weren't started if only deletions were
       committed or updated. (Stefan)
- BUG: The "show log" was shown for added files in the status
       list control. (Stefan)
- BUG: Files/Folders with '%' in the name could not be renamed in the
       repository browser. (Stefan)
- BUG: Reverting files could have removed associated folders. (Stefan)
- BUG: The OK button in the checkout dialog was sometimes disabled. (Stefan)
- BUG: Creating a tag/branch from the repository browser didn't work if
       the target folder did not exist. (Stefan)
- BUG: Under rare conditions, log reported revisions twice (Stefan Fuhrmann)
- BUG: Log for branches, tags etc. could be slow if the log cache is
       incomplete and the repository has many revisions (Stefan Fuhrmann)
- BUG: Reported RAM usage of log cache too large (Stefan Fuhrmann)
- BUG: The "delete unversioned items" command only worked for single paths.
       If multiple items were selected, the dialog showed
       an empty list. (Stefan)

TortoiseSVN Homepage
TortoiseSVN-1.5.6.14908-win32-svn-1.5.5.msi
TortoiseSVN-1.5.6.14908-x64-svn-1.5.5.msi
Original Post :
http://neodreamer-dev.tistory.com/234

2008/11/11

무료 SVN Server - VisualSVN Server 1.6.2 Released



이번 버전에서 바뀐 내용
  • Updated to Subversion 1.5.4. For further
    . Properly handle explicit mergeinfo added in merge source (r32968, -75)
    . fixed: merging of paths containing spaces (r33641, -44)
    . fixed: regression in mergeinfo-aware merges against 1.5.3 (r33693, -704)
  • Fixed: IP address configuration for server binding can be lost on upgrade.
  • Do not check for occupied TCP port on upgrade if VisualSVN Server configured to listen on specific interfaces.
2008/06/19 - [Dev Story/Tips] - 그림으로 보는 간단한 개발서버 구축하기

2008/06/19 - [Dev Story/Tips] - VisualSVN Server 와 TortoiseSVN을 이용하기

VisualSVN Official website
VisualSVN Server page
VisualSVN Server Download P

Original Post :
http://neodreamer-dev.tistory.com/198

2008/10/27

TortoiseSVN-1.5.5.14361 Released!!




갑자기 업데이트 주기가 빨라진 것 같다.
얼마전 1.5.4버전으로 업데이트 되었는데 곧바로 1.5.5버전이 나왔다.

이번 버전에서 바뀐점
Version 1.5.5
- BUG: The properties dialog would show the url with backward slashes when
       started from the repository browser. (Stefan)


TortoiseSVN Homepage

TortoiseSVN-1.5.5.14361-win32-svn-1.5.4.msi

TortoiseSVN-1.5.5.14361-x64-svn-1.5.4.msi

Original Post : http://neodreamer-dev.tistory.com/190

2008/10/18

TortoiseSVN-1.5.4.14259 Released!!




1.5.4 버전에서 바뀐점.

- CHG: OpenSSL 0.9.8i with capieng enabled
- BUG: Applying a patch where a context line had UTF-BOMs
       in it failed. (Stefan)
- BUG: Checking out multiple folders from the repository browser failed
       to unescape the target folder. (Stefan)
- BUG: If an url had special chars which needed escaping below the
       repository root, showing the log did not always work. (Stefan)
- BUG: Comparing two revisions sometimes did not work if the url didn't
       exist anymore in HEAD. (Stefan)
- BUG: Diffing/Blaming from TortoiseBlame on merged revisions did not
       work in certain situations. (Stefan)
- BUG: Unescape the target paths when exporting the changed files from
       the file diff dialog. (Stefan)
- BUG: the 'unversioned' overlay for folders didn't show up for some
       unversioned folders. (Stefan)
- BUG: After a "mine before theirs" or "theirs before mine" resolving
       action on the right pane in TortoiseMerge, the Undo would not
       undo correctly. (Stefan)
- BUG: Failures, even GPF in blame and log dialogs when specifying a
       revision range and a peg revision outside that range. (Stefan Fuhrmann)
- BUG: TortoiseMerge sometimes wrongly detected the encoding of files. (Stefan)
- BUG: If a merge conflicted due to added items the progress dialog did not
       count these correctly and the context menu missed items. (Tobias Sch�fer)
- BUG: TortoiseMerge could crash if the font size was set smaller than
       8 pixels. (Stefan)
- BUG: When a cleanup failed, the error message didn't include the svn
       error string. (Stefan)
- BUG: /closeonend was ignored for the (un)lock command. (Stefan)
- BUG: The 'rename' context menu was not available for added files. (Stefan)
- BUG: Entering an URL before non-ascii text in the commit dialog corrupted
       the first chars of the non-ascii text. (Stefan)
- BUG: Blame from the repository browser ignored the diff options. (Stefan)

TortoiseSVN Homepage

TortoiseSVN-1.5.4.14259-win32-svn-1.5.3.msi

TortoiseSVN-1.5.4.14259-x64-svn-1.5.3.msi
LanguagePack_1.5.4.14259-win32-ko.msi
LanguagePack_1.5.4.14259-x64-ko.msi


Original Post : http://neodreamer-dev.tistory.com/189