Reputation: 211
Want to get all files that were added to my local filesystem when I cloned SVN. git log --name-status does this for git, yet I cannot find an equivalent in SVN.
Ive tried svn status, svn log, svn list yet nothing seems to print out all the files ive added (and in a nice format like git log)
Upvotes: 2
Views: 142
Reputation: 2076
svn log --verbose
seems equivalent to git log --name-status
, including list of files added, deleted or modified.
The --verbose
description from the svnbook:
Requests that the client print out as much information as it can while running any subcommand. This may result in Subversion printing out additional fields, detailed information about every file, or additional information regarding its actions.
Upvotes: 3