Reputation: 459
Following is my git
workflow which I plan to automate
I need ideas on how to know the list of files changed and how to open them, please provide your inputs.
Upvotes: 0
Views: 1280
Reputation: 3462
I am a newbie to the gerrit system , but i think -- git diff -- also do the same thing. Moreover it also tell the differences in the content of both the files.
Unfortunately no eclipse plugin is available for gerrit till now.
-- git status You run git status to see if anything has been modified and/or staged since your last commit so you can decide if you want to commit a new snapshot and what will be recorded in it.
This will show all modified files.
Reference http://www.mediawiki.org/wiki/Gerrit/Tutorial
Upvotes: 0
Reputation: 5532
Create a step 1a of creating a branch - git branch temp
.
For step 3, to get this list of modified files, run git diff --name-only temp
to see the file names of everything that has changed since you created temp.
Upvotes: 1