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]
source
share