Reputation: 271594
Let's say I haven't svn update
in a while. However, before I want to do a svn update, I want to see what has been changed.
How can I do that?
Upvotes: 1
Views: 1925
Reputation: 301037
For sake of other users ( or even OP if they are using TortoiseSVN), in order to achieve the same with TortoiseSVN:
Right-click on your working copy folder, choose "Check for modifications". In that dialog, click on the button "Check repository".
( in the background, this does use the svn st -u
svn command like @Gareth Western mentions )
Upvotes: 1
Reputation: 1132
You can check the show history
. It logs all the actions and updates done in the file or project.
Upvotes: 0
Reputation: 2406
svn status --show-updates
Learn more about the 'status' command in the SVN Redbook
Upvotes: 5
Reputation: 2537
svn log -r BASE:HEAD
will display the log between the current BASE and the HEAD of the repository.
Upvotes: 5