Last active
March 3, 2017 17:39
-
-
Save djk29a/3cbc2d26f359050d1563ce31eb576f49 to your computer and use it in GitHub Desktop.
git tricks
This file contains 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
# get all files modified in a branch | |
git diff --name-only <notMainDev> $(git merge-base <notMainDev> <mainDev>) | |
# shorter alternative for git versions... ?+ | |
git whatchanged --name-only --pretty="" origin..HEAD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment