Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道文件夹下文件的修订号,例如,
calc/Makefile: 4 integer.c: 4 button.c: 5
我怎么能在 SVN 中做到这一点?
我不知道以您要求的格式输出所有版本号的方法
但是您可以svn info对每个文件使用,例如:
svn info
svn info integer.c | grep "Last Changed Rev"
或者您可以使用svnversion .获取当前文件夹的版本
svnversion .
使用svn status -v 或svn status -v -u
svn status -v
svn status -v -u