Outlookに他人の予定表を表示させる方法を追加
svn+ssh://user@host/repository でURL指定
svn
- info
- diff -r OLD:NEW
- diff log -r
- diff | grep Index
-propset "Id Date .." # commit時にソース内のpoperty情報自動書き換え
.svn/config => config setting, for example, automatic properties
svn co file:///<directory_path> でもOK
* create repository
svnadmin create /somewhere/svn-repos/ccn
svn mkdir file:///somewhere/svn-repos/ccn/trunk -m "create"
svn mkdir file:///somewhere/svn-repos/ccn/branches -m "create"
svn mkdir file:///somewhere/svn-repos/ccn/tags -m "create"
----------------------------------------
Automatic revision change in RTL header
Edit .subversion/config in your $HOME
1. Set enable-auto-props=yes
Delete the first "# " characters.
Note that you should not remain space character at the start of the line.
2. Add svn:keywords in [auto-props] sections as follows
[auto-props]
*.c=svn:keywords=Date Author Rev
(this is an example for *.c files )
When you commit a file,
svn insert revision etc, into header in the file.
Original header description
// $Rev:$
// $Data::
// $Author:$
Replaced with the following at commit
// $Rev: 101 $
// $Date::
// $Author:: hamajun $
----------------------------------------
svn co file:////root/...