Last active
April 21, 2016 20:45
-
-
Save dtateii/cb931281ccfc1df751b9 to your computer and use it in GitHub Desktop.
Recursively copy changed files between two Git tags (or commits) to another location.
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 diff --name-only v0.3 v0.4 | xargs -I{} rsync -Rv "{}" ~/Desktop/destination-dir/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment