When I type bzr revno
in the project directory, it displays for me the latest version I've received from my last bzr update
rather than what I've revert
ed to most recently. Obviously bzr
is more worried about what I've checked out, rather than the code revision I'm working with.
This is also the case if I do bzr update -rN
.
For example:
patrick@blendtec:~/Project$ bzr update
Tree is up to date at revision 743 of branch bzr+ssh://patrick@ninja/Project
patrick@blendtec:~/Project$ bzr revert -r 720
M makefile
M file.cpp
M file.h
-D other_file.h
patrick@blendtec:~/Project$ bzr revno
743
patrick@blendtec:~/Project$ bzr revno --tree
743
So... what command does one use to display the revision number of the code that's been reverted to?