Created
March 10, 2014 17:22
-
-
Save 0x4a/9469655 to your computer and use it in GitHub Desktop.
list all files from .gitignore #git #cli
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
#https://stackoverflow.com/questions/466764/show-ignored-files-in-git/ two different ways | |
git ls-files --others -i --exclude-standard >> out.txt | |
git clean -ndX >> out.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment