2017-03-14 18 views
1

私は長い間更新していないブランチからsvn updateコマンドを実行しましたが、svn操作のために驚くべき列書式が見つかりました。 U、A、Dなどのどの欄で伝えられていることはありますか?コンソール出力のSVN更新操作列

私は最初の列はファイル/ディレクトリ用で、2番目はsvnプロパティ用だと思いますか? 2つ以上の列がありますか?彼らは何を正確に表していますか?

答えて

2

これは既によく文書化されているようですが、明らかに列がたくさんあります。

svn update --help 

    For each updated item a line will be printed with characters reporting 
    the action taken. These characters have the following meaning: 

    A Added 
    D Deleted 
    U Updated 
    C Conflict 
    G Merged 
    E Existed 
    R Replaced 

    Characters in the **first column** report about the item itself. 
    Characters in the **second column** report about properties of the item. 
    A 'B' in the **third column** signifies that the lock for the file has 
    been broken or stolen. 
    A 'C' in the **fourth column** indicates a tree conflict, while a 'C' in 
    the first and second columns indicate textual conflicts in files 
    and in property values, respectively. 
関連する問題