simpatico
simpatico

Reputation: 11087

Which svn commands asks for what's new in the trunk?

Before I execute svn update I'd like to know which files will be affected (which will be modified, which will be added and which will be removed). Looking through the svn commands svn mergeinfo seems the closest, but it requires an argument.

Upvotes: 2

Views: 38

Answers (1)

Martin Schapendonk
Martin Schapendonk

Reputation: 13496

You may find

svn status -u

helpful.

See svn status

Upvotes: 3

Related Questions