Show svn version number for each netbeans project file

How do I show project version control (php) tags in Netbeans and for each file that has the latest revision number, for example, in Eclipse?

Now all my project files have the same version number (latest project version).

- project [37]
    file1.php [37]
    file2.php [37]
    file3.php [37]
  - folder1 [37]
      file4.php [37]

But in Eclipse, each file has its own revision, it seems to me.

- project [37]
    file1.php [23]
    file2.php [37]
    file3.php [12]
  - folder1 [12]
      file4.php [12]
+3
source share
1 answer

Displaying the repository version number instead of the file version number (as well as other SVN variables) is the subject of error 121755 in NetBeans Bugzilla .

So, the answer to your question is: you cannot (at this time).

+1
source

Source: https://habr.com/ru/post/1733159/


All Articles