Skip to content

Instantly share code, notes, and snippets.

@luxuia
Created April 23, 2018 05:18
Show Gist options
  • Select an option

  • Save luxuia/549022c5a0cca973180b4284472cb221 to your computer and use it in GitHub Desktop.

Select an option

Save luxuia/549022c5a0cca973180b4284472cb221 to your computer and use it in GitHub Desktop.
#!/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