Created
April 23, 2018 05:18
-
-
Save luxuia/549022c5a0cca973180b4284472cb221 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| cd ../../ | |
| if [ $# == 2 ] | |
| then | |
| mkdir ../$2 | |
| cp -rp --parents `git log --grep=$1 --pretty="format:" --name-only | sort | uniq` ../$2 | |
| else | |
| git log --grep=$1 --pretty="format:" --name-only | sort | uniq | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment