Last active
February 15, 2017 14:00
-
-
Save dayfuaim/29489e1fc4a5d8fe653f6d43df174a08 to your computer and use it in GitHub Desktop.
Get all files created/changed in the BRANCH
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
#!/bin/bash | |
# | |
# Usage: git_files <BRANCH> | |
# | |
# Get all files created/changed in the BRANCH | |
# | |
git diff --stat `git merge-base master $1`..$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment