Modify ↓
Opened 18 years ago
Closed 17 years ago
#5943 closed defect (worksforme)
Changeset view doesn't display source revision for 'svn copy' operations
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | version control/changeset view | Version: | 0.10.3 |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
If I do something like:
svn copy -r 10 http://svn.example.org/svn/trunk/testpath . svn commit -m "copied testpath" Committed revision 15.
Then, when I go look at the Trac changeset view for revision 15, I expect Trac to show something like: "(copied from trunk/testpath:10)". Instead, the view shows only: "(copied from trunk/testpath)".
The source revision is important especially when the copy is creating a new branch and future merges need to know the revision from which to start.
"svn log -r 15 --verbose
" gives the appropriate information:
------------------------------------------------------------------------ r15 | anonymous | 2007-08-13 11:26:06 -0400 (Mon, 13 Aug 2007) | 1 line Changed paths: A /branches/20070813-release/testpath (from /trunk/testpath:10)
This is with svn command line client version 1.4.4
Attachments (0)
Note:
See TracTickets
for help on using tickets.
We already have that info in the tooltip ("Show original file (rev. 15)"). By clicking on the link, you go to a TracBrowser page showing that
path
at the relevantrev
.