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
Post a Comment