git diff - How to list files which are not in another branch using git? -
i have 2 branches master , develop. master has been merged develop. develop has code not in master. how see files exist in develop , not in master?
on develop
branch : git diff master
or files added (new files): git diff master --diff-filter=a
Comments
Post a Comment