Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get modified files when I pull using NetBeans?

I get this kind of message when i am trying to pull from NetBeans 7.2:

==[IDE]== 05-nov-2012 14:52:04 Pulling...

git pull ssh://git@ip/home/git/project/ +refs/heads/Dev_Nov_1:refs/remotes/origin/Dev_Nov_1

Branch : origin/Dev_Nov_1

Old Id : xxxx

New Id : xxxy

Result : FAST_FORWARD

Merge Result: Fast-forward

Merge of HEAD with origin/Dev_Nov_1:

Commit Log

revision : xxxx

author : cesar

date : 05-nov-2012 14:51:13

summary : test commit

==[IDE]== 05-nov-2012 14:52:38 Pulling... finished.

And I would like to get also the list of modified files .

I know that using git log --stat I can get it, but does anyone know how to do this using Netbeans?

like image 615
César Rodríguez Avatar asked Nov 05 '12 13:11

César Rodríguez


People also ask

How to commit changes in NetBeans?

In the Projects window, right-click the file you want to commit. [start=2] . In the context menu, choose Git > Commit .

How do I commit multiple files in NetBeans?

In Netbeans if you have a file as your active window then it will only commit that file. To commit multiple modified files right click on the name of the project in the Project Window (usually on the left of the screen--you can also go to "Window" in the menu and activate it there), select Git, and then select commit.

How do I import a Git project into NetBeans?

Open NetBeans, go to Team and select Clone… Then go to GitHub and select the project you want to clone: On the next screen paste the clone https URL along with your GitHub credentials.


1 Answers

To get a list of files changed:

  • Right click on the project in the project browser and select Git->Show History from the menu
  • Select the search button - this will give you a summary of the commits
  • Select a commit and the files changed are show
  • Select the diff tab and a file is you want to see the changes to the files
like image 93
parkydr Avatar answered Nov 15 '22 04:11

parkydr