blob: 2e1c4c84eebe0569aedd19c1ea40b8693d441640 (
plain)
1
2
3
4
5
6
7
8
|
`corgi.conf` has the `skip-worktree` bti set. if you want to commit this file, remove the bit, add it, and re-set the bit.
```
# set skip-worktree
git update-index --skip-worktree corgi.conf
# unset skip-worktree
git update-index --no-skip-worktree corgi.conf
```
|