Actions
Feature #14820
openRepository: Show which rev introduced changes ("Last Changed Rev")
Status:
New
Priority:
Normal
Assignee:
-
Category:
SCM
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Description
Consider root/trunk/app/controllers/account_controller.rb@ 516
This page should also show the Last Changed Rev.
For subversion it can be determined as follows:
svn info http://svn.redmine.org/redmine/trunk/app/controllers/account_controller.rb@516 | grep -e "^Last Changed Rev: " | cut -c19-...this gives us 514. Thus account_controller.rb@ 514 and account_controller.rb@ 516 are equivalent, and 514 introduced the changes.
The page should provide the user with this information.
(Diff's should also show which revs introduced changes. See #14818 (esp. note 2-> #14818#note-2))
Related issues
Updated by Friedrich Schiller about 11 years ago
Ah sorry. Wrong tracker. This is a Feature, not Defect.
I don't have rights to change this; ...please if someone could do this. Thanks.
Updated by Friedrich Schiller about 11 years ago
Alternative for subversion:
Last Changed Rev =
svn log http://svn.redmine.org/redmine/trunk/app/controllers/account_controller.rb@516 -l 1 | grep -E -e "^r[[:digit:]]+" -o | cut -c2-...this (also) gives us 514.
Updated by Toshi MARUYAMA about 11 years ago
- Related to Feature #14818: Diff and Repository Navigation: include navigation when inside diffs (prev difference, next difference), etc. added
Updated by Toshi MARUYAMA about 11 years ago
- Tracker changed from Defect to Feature
Updated by Toshi MARUYAMA about 11 years ago
Friedrich Schiller wrote:
Ah sorry. Wrong tracker. This is a Feature, not Defect.
I don't have rights to change this; ...please if someone could do this. Thanks.
Done.
Actions