Last active
May 18, 2023 08:26
-
-
Save ironpython2001/f27f3bcbfcbc404f76812e26c47506fa to your computer and use it in GitHub Desktop.
git what was changed in a branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git whatchanged --name-only --pretty="" *.xaml *.cs | |
or | |
git whatchanged --oneline --name-only | |
https://stackoverflow.com/questions/25289469/how-to-find-list-of-unique-files-that-have-changed | |
https://stackoverflow.com/questions/10641361/get-all-files-that-have-been-modified-in-git-branch | |
find list of unique files that changed | |
git whatchanged --oneline --name-only | grep --extended-regexp --invert-match '^[[:xdigit:]]{7,}' | |
in windows | |
git whatchanged --oneline --name-only | findstr --extended-regexp --invert-match '^[[:xdigit:]]{7,}' | |
reference | |
https://stackoverflow.com/questions/25289469/how-to-find-list-of-unique-files-that-have-changed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment