简体   繁体   中英

svn history via command line

I am trying to write a utility in python to get me all the files that have been modified for a specific branch....i don't care about the date or who commited.

how would I go about doing this? I can handle the python part, I just can't find a command in svn to give me the output.

svn log -l 10 path/to/file

Here 10 is number of entries from logs

eg

svn log -l 10 pom.xml
svn diff -r REV:HEAD --summarize

其中REV是创建分支的修订版。

您可以使用“svnlook history”命令: Subversion Complete Reference

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM