Đang chuẩn bị liên kết để tải về tài liệu:
Version Control with Subversion phần 8

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

Hướng dẫn sử dụng TortoiseSVN: Đây chỉ là hướng dẫn để làm quen với khái niệm và các thao tác trên TortoiseSVN. Cách setup một SVN server thực sự và các chức năng cụ thể của TortoiseSVN xin tham khảo file help trong thư mục cài đặt. Để đơn giản, bài viết sẽ tạo cả server lẫn client trên cùng một máy tính. | Subversion Complete Reference When you re concatenating the results of multiple calls to the log command you may want to use the - -incremental option. svn log normally prints out a dashed line at the beginning of a log message after each subsequent log message and following the final log message. If you ran svn log on a range of two revisions you would get this svn log -r 14 15 r14 . ---------------------------------------------------------------------------- r15 . ---------------------------------------------------------------------------- However if you wanted to gather 2 non-sequential log messages into a file you might do something like this svn log -r 14 mylog svn log -r 19 mylog svn log -r 27 mylog cat mylog ---------------------------------------------------------------------------- r14 . ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- r19 . ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- r27 . ---------------------------------------------------------------------------- You can avoid the clutter of the double dashed lines in your output by using the incremental option svn log --incremental -r 14 mylog svn log --incremental -r 19 mylog svn log --incremental -r 27 mylog cat mylog ---------------------------------------------------------------------------- r14 . ---------------------------------------------------------------------------- r19 . ---------------------------------------------------------------------------- r27 . The - -incremental option provides similar output control when using the - -xml option. 238 Subversion Complete Reference If you run svn log on a specific path and provide a specific revision and get no output at all svn log -r 20 http svn.red-bean.com untouched.txt That just means that the path was not modified in that revision. .