It is, as said in the quoted comment... unfriendly.
Unfriendly with yourself
Imagine the following scenario. You are viewing the logs in source control. You are wondering what a commit changed. Instead of explaining it in plain English, it tells you:
Solved #1307
You run the bug tracking system, hoping to have something helpful. Bug #1307 is reported as solved. In the description, you see:
Same bug as #1284
Thanks, its very helpful. You have now to navigate to bug report #1284 to read that it's a duplicate of bug #1113 which refers to bugs #1112, #1065 and #1067.
Five minutes later, you have no idea what are you searching for at the beginning.
A much more helpful version control log message would be:
Solved an issue with the users being unable to log on with a password longer than 25 characters (see #1307), by removing applying the same password length policy to the data access layer as the one used in the website itself.
In the same way, in the bug tracking system, the report #1307 could be more self-explanatory, recalling what was the bug report #1284 about, and how the new one is different from the old one.
Unfriendly with customers
This is not the only friendliness issue.
A second one is that by referencing too much with no additional info, you are making the patch notes/version control logs/bug tracking system reports unusable to someone not very familiar with those systems. When you deal with a bug tracking system daily, you know how to quickly navigate through the reports, view multiple reports side by side, etc. When you're a customer with no technical background, you can easily be lost.
Here again, more detailed messages are very helpful than just a reference. Note that you still want to keep references: nothing is more wrong than a bug which is the same as a bug you encountered two weeks ago, but don't recall its ID.
As a note, the same issue exists in many jurisdictions. In France for example, it is not unusual for a legislation to refer to multiple sources, which may change meanwhile. This means that in order to completely understand it, you have to spend sometimes hours in a library, searching for dozens of referred texts, each text having its own references to others.