SVN: is it possible to get svn info for a given revision number of a branch

后端 未结 3 2226
清酒与你
清酒与你 2021-02-12 12:56

Is it possible to get svn info for a branch for a specific revision number. For example if the latest working copy of a branch has revision number 56, can I get info for the sam

3条回答
  •  青春惊慌失措
    2021-02-12 13:24

    Assuming you are in a working copy, you can just do the following:

    Get commit info:

    svn log -c 
    

    Get commit info with file list:

    svn log -c  -v
    

    Get full file diff:

    svn diff -c 
    

提交回复
热议问题