This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 253158 - Please add a feature to upload only changed files inside a VCS
Summary: Please add a feature to upload only changed files inside a VCS
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Project (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: Tomas Mysik
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-24 12:07 UTC by Christian Lenz
Modified: 2015-06-25 06:08 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christian Lenz 2015-06-24 12:07:55 UTC
I have a big php project with templates and a lot of folders and so on. It would be very nice to have a context menu entry inside the VCS window for changes, for me Git, to upload/download/sync only files, who has changed. ATM, I have to select a folder with files and have to figure out which file has changed. An other option what I did is to select only those files which have changed, this is horrible inside a big project, because I have to scroll up and down and so on.

So I think 2 options would be nice:
A context menu inside the VCS window for changes to upload/download/sync changed files and a checkbox to only show changed files inside the upload/download/sync window, which I open when I select a project -> right click -> upload. for example.


Regards

Chris
Comment 1 Ondrej Vrabec 2015-06-24 13:20:55 UTC
The second may be doable, there is a private-contract API letting you know if a file is VCS modified or not:
https://netbeans.org/bugzilla/show_bug.cgi?id=248811
Comment 2 Tomas Mysik 2015-06-25 06:08:35 UTC
I am not sure whether traversing the whole file tree (can be HUGE number of files) is good from performace point of view (we do not do it currently); I would definitely prefer to be able to ask VCS for "changed" files.

Thanks.