Last active
May 29, 2016 04:37
-
-
Save nishinoshake/d82e7a1ef96af048550b to your computer and use it in GitHub Desktop.
gitでインデックスされているファイルをあえて無視する
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
#skip file | |
git update-index --skip-worktree file | |
#no-skip file | |
git update-index --no-skip-worktree file | |
#display all skip files | |
#"S" means skip | |
git ls-files -v | grep ^S |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment