diff options
author | Steph Enders <steph@senders.io> | 2023-03-30 00:16:10 -0400 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-03-30 00:16:10 -0400 |
commit | e81589eb3b0669cd47150735ee5378dfc2cabd36 (patch) | |
tree | b26359db7e10baf312b16085eb197d8001d04faf | |
parent | b7e4cfa9d3e362c35e6521ed3c8003b0ea0d4b32 (diff) |
Move --ignore to .stow-local-ignore file
It seems like --ignore isn't as 1:1 with the local ignore file.
Which is very frustrating TBH!
The good news is it looks like it takes precident over the default
settings which ignored the .gitignore - so we can throw that into the
mix!
Overall, this tool is very nice because it makes traversing these files
much much simpler. But I feel like for something that SHOULD be
relatively simple is actually not so? Which is a shame.
-rw-r--r-- | .gitignore (renamed from dot-gitignore) | 0 | ||||
-rw-r--r-- | .stow-local-ignore | 4 | ||||
-rw-r--r-- | .stowrc | 5 |
3 files changed, 4 insertions, 5 deletions
diff --git a/dot-gitignore b/.gitignore index fe19d1c..fe19d1c 100644 --- a/dot-gitignore +++ b/.gitignore diff --git a/.stow-local-ignore b/.stow-local-ignore new file mode 100644 index 0000000..9ffa2df --- /dev/null +++ b/.stow-local-ignore @@ -0,0 +1,4 @@ +README\.org +LICENSE +\.git +\.stowrc @@ -1,8 +1,3 @@ --dir=~/configs/dotfiles/ --target=~/ ---dotfiles ---ignore='\.git' ---ignore=README\.org ---ignore=LICENSE ---ignore=\.stowrc --verbose |