Created
November 30, 2014 22:34
-
-
Save dereksz/c1d54f049d104cf71733 to your computer and use it in GitHub Desktop.
useful git one-liners
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
# Find UNICODE files | |
find -name '*.tt' | xargs -I{} file {} | grep -F 'UTF-16' | |
# Modified files - check types | |
git status -s | sed -nre 's/^ M //p' | | |
xargs -I{} file {} # and check the files 'type' (looking for unicode madness here!)cd .. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment