Skip to content

Instantly share code, notes, and snippets.

@musaprg
Created February 2, 2017 07:32
Show Gist options
  • Save musaprg/e497def942a5305fd3d83002869e1da3 to your computer and use it in GitHub Desktop.
Save musaprg/e497def942a5305fd3d83002869e1da3 to your computer and use it in GitHub Desktop.
gitでdeletedしちゃったやつを全部checkoutするワンライナー
git status | grep deleted | awk '{print $2}' | while read line ; do git checkout $line ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment