How to list the files commited using git/git flow -


i created hotfix using git flow. did while ago , committed few files development environment. switched feature. wish see list of files changed/committed against hotfix.

could 1 please give command on how list files.

check out hotfix branch , do

git diff --name-only master 

that show files have changed in hotfix branch.

git diff --name-status master 

will same added, m modified , d deleted give more detailed overview of changes.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -