svn export with revision numbers in the exported filenames -
i need export files 1 folder, , want mark (extend file name) real file revision. there not sort of option in svn export
. however, maybe has script this?
as start can use this:
get-childitem -name | foreach-object {svn info $_ --show-item last-changed-revision}
this print out latest revision of every file. if need recusrion add -recursive
get-childitem.
in powershell can get-childitem
command: get-help get-childitem
.
Comments
Post a Comment