I work with another developer in the same working copy (I know that is a bad idea), we usually do updated of individual files, and now we have files in some revision and others in another. How can I see a list of files with their respectives revision numbers? (The working copy is in a linux box, and we're using svn command line.
Thanks in advance for any help
Try this in your working copy
svn info *
or
svn info -R *
to see all files and directories recursively
You may type svn help info
to see other options
svn -R list --verbose
It will give output like this
109 authorname 3818 Nov 20 2012 JSON/xyz.json
svn info -R . | egrep "^Path:|^Revision:" | paste - -
Which means
Produces output like this:
Path: Tools/xmlvalidator Revision: 69114
Path: Tools/xmlvalidator/main.c Revision: 69114
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With